-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
43 lines (36 loc) · 2.05 KB
/
.gitignore
File metadata and controls
43 lines (36 loc) · 2.05 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
# ─── Build Artifacts ─────────────────────────────────────────────────────────
*.elf
*.bin
*.map
*.lst
# Exception: keep the UF2 bootloader hex in artifacts — known binary for flashing
*.hex
!artifacts/nrf52480/uf2_bootloader-*.hex
# ─── Python ──────────────────────────────────────────────────────────────────
__pycache__/
*.pyc
*.pyo
# ─── IDEs ────────────────────────────────────────────────────────────────────
.vscode/settings.json
.vscode/launch.json
.vscode/c_cpp_properties.json
!.vscode/extensions.json
.idea/
*.swp
*.swo
# ─── macOS ───────────────────────────────────────────────────────────────────
.DS_Store
# ─── Windows ─────────────────────────────────────────────────────────────────
Thumbs.db
Desktop.ini
# ─── Secrets ─────────────────────────────────────────────────────────────────
*.pem
*.key
*.p12
secrets.yml
.env
# ─── Logs ────────────────────────────────────────────────────────────────────
*.log
# ─── Build Directories ───────────────────────────────────────────────────────
build/
build_*/