|
|
|
|
|
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 (nim c -r leaves executables without .nim ext) --
|
|
tests/test_*
|
|
!tests/test_*.nim
|
|
|
|
# -- Local debug / hang investigation (never commit) --
|
|
debug_*
|
|
debug_*.nim
|
|
test_hang*
|
|
tests/mk_debug
|
|
build.tmp
|
|
nimcheck.out
|
|
|
|
# -- 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/
|