Skip to content

Commit 95f7519

Browse files
committed
Add project gitignore
1 parent a17c998 commit 95f7519

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Python bytecode and caches
2+
__pycache__/
3+
*.py[cod]
4+
*.mpy
5+
6+
# Build and packaging output
7+
build/
8+
dist/
9+
*.egg-info/
10+
11+
# Test and coverage output
12+
.coverage
13+
.pytest_cache/
14+
.mypy_cache/
15+
.ruff_cache/
16+
17+
# Local CircuitPython secrets and board files
18+
secrets.py
19+
settings.toml
20+
21+
# Editor and OS files
22+
.DS_Store
23+
.idea/
24+
.vscode/
25+
*.swp
26+
*.swo

0 commit comments

Comments
 (0)