diff options
| author | Mumtahin Farabi <[email protected]> | 2026-05-11 21:18:07 -0400 |
|---|---|---|
| committer | Mumtahin Farabi <[email protected]> | 2026-05-11 21:18:07 -0400 |
| commit | 9b0fb073ed687ab5b49fdd4e7d2b3e58af325049 (patch) | |
| tree | 443a229004c7811e20b07519055ea68b0ae243df /.gitignore | |
| parent | bda282b7177e0b601a65bbe967af9152dda36271 (diff) | |
build(gitignore): scaffold setup
Signed-off-by: Mumtahin Farabi <[email protected]>
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..edc65c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,63 @@ +#==================================================== +# 🏗 BUILD/TEST OUTPUTS 🏗 +#==================================================== +**/.pio/ +**/debug/ +**/result +**/zig-out +**/target/ +**/dist +**/node_modules + +#==================================================== +# CACHES/LOGS +#==================================================== +logs # MSVC Windows builds of rustc generate these, which store debugging information +*.pdb +.cache +.devenv* +.direnv +*.sqlite +*.sqlite-* +**/*.qcow2 +**/.direnv/ +**/*.rs.bk +**/.git-hooks +**/.zig-cache +devenv.local.nix +devenv.local.yaml +local.properties +.pre-commit-config.yaml + +#==================================================== +# MISCELLANEOUS +#==================================================== +.c9 +*.pem +*tmp* +.idea/ +.project +*.launch +.vscode/* +.DS_Store +.settings +.classpath +!.vscode/settings.json +!.vscode/extensions.json +!.vscode/settings-example.json + +#==================================================== +# DEPENDENCIES +#==================================================== +/.pnp +.pnp.js +firmware/zephyr/ +firmware/modules/ +firmware/bootloader/ +firmware/tools/ +build/ + +opencode.json +/.codex/config.toml +/compile_commands.json +/tests/__pycache__ |
