diff options
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f76560f --- /dev/null +++ b/.gitignore @@ -0,0 +1,55 @@ +# Local / secrets (never commit live values) +local/ +!local/README.md + +# Editor / OS +*~ +*.swp +*.swo +.DS_Store +.idea/ +.vscode/ +*.code-workspace + +# Build / firmware artifacts +*.o +*.elf +*.bin +*.hex +*.map +build/ +dist/ +out/ +.cache/ + +# KiCad +*-backups/ +*.kicad_prl +fp-info-cache +*-cache.lib +*.bak +\#auto_saved_files\# +_autosave-* + +# Python / tooling +__pycache__/ +*.pyc +.venv/ +venv/ + +# Logs +*.log + +# KiCad / generator +*.kicad_pro.lck +**/__pycache__/ +hardware/kicad/t-modem/*.kicad_prl + +# KiCad local UI +.history/ +~*.lck + +# Vault MASTER governance — never ship/commit to this slave +AGENT-INDEX.md +**/AGENT-INDEX.md +.deps/ |
