47 lines
419 B
Plaintext
47 lines
419 B
Plaintext
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# PlatformIO
|
|
.pio/
|
|
.pioenvs/
|
|
.piolibdeps/
|
|
libdeps/
|
|
|
|
# ESP-IDF / CMake build artifacts
|
|
build/
|
|
cmake-build-*/
|
|
sdkconfig.old
|
|
|
|
# Arduino / generic build artifacts
|
|
*.elf
|
|
*.bin
|
|
*.hex
|
|
*.map
|
|
*.o
|
|
*.a
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
*.bak
|
|
tmp/
|
|
temp/
|