tests/test_json_exhaustive tests/test_toml_exhaustive tests/test_yaml_exhaustive *.bak* # ── Nim ────────────────────────────────────────────────────────────────── nimcache/ nimblecache/ *.exe *.out *.o *.obj *.a *.so *.dylib # ── Binaries (compiled output) ─────────────────────────────────────────── bin/ # ── Test compiled binaries (source is .nim, binaries have no extension) ── tests/test_all tests/test_bash tests/test_nim tests/test_php tests/test_python tests/test_javascript tests/test_js tests/test_html tests/test_jinja tests/test_json tests/test_yaml tests/test_toml tests/test_mixed tests/test_config tests/test_fuzz # ── Logs ───────────────────────────────────────────────────────────────── *.log # ── Python cache ───────────────────────────────────────────────────────── __pycache__/ *.pyc *.pyo *.pyd # ── OS files ───────────────────────────────────────────────────────────── .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db desktop.ini # ── Editor files ───────────────────────────────────────────────────────── *.swp *.swo *~ *.bak *.orig .vscode/ .idea/ *.sublime-project *.sublime-workspace # ── Environment / secrets ──────────────────────────────────────────────── .env .env.local .env.*.local *.env !.env.example # ── Temporary / backup files ───────────────────────────────────────────── /tmp/ *.tmp *.temp *.pid # ── dpc agent logs ─────────────────────────────────────────────────────── dpc.log # ── Coverage reports ───────────────────────────────────────────────────── *.gcda *.gcno *.gcov lcov.info coverage/