-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
57 lines (50 loc) · 2.19 KB
/
.gitignore
File metadata and controls
57 lines (50 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# ─── Rust ─────────────────────────────────────────────────────────────────────
target/
# ─── ESP-IDF / CMake build output ─────────────────────────────────────────────
build/
sdkconfig
sdkconfig.*
!sdkconfig.defaults
!sdkconfig.ble
managed_components/
dependencies.lock
# ─── PlatformIO ───────────────────────────────────────────────────────────────
.pio/
.pioenvs/
# ─── Python (ESP-IDF toolchain helpers) ───────────────────────────────────────
__pycache__/
*.py[cod]
.venv/
*.egg-info/
# ─── Editors ──────────────────────────────────────────────────────────────────
# Keep .vscode/launch.json and tasks.json – they are useful to all contributors.
.vscode/settings.json
.vscode/*.log
.idea/
*.swp
*~
# ─── OS ───────────────────────────────────────────────────────────────────────
Thumbs.db
desktop.ini
.DS_Store
# ─── Compiled firmware artefacts ──────────────────────────────────────────────
# build/ above already excludes firmware images; these catch stray copies.
*.elf
*.map
*.hex
# ─── Host acceptance-test build artefacts ─────────────────────────────────────
tests/*.exe
tests/*_test
tests/*_asan
tests/*_harness
*.obj
tests/policy_test
Rivr_Companion/
rivr_website/
venv/lib64
venv/pyvenv.cfg
venv/bin/python
venv/bin/python3
venv/bin/python3.12
.vscode/c_cpp_properties.json
.vscode/launch.json