Files
nimcheck/.gitignore
T
retoor 4a9b4bdf3a chore: normalize comment formatting in CI workflow and gitignore
Replace inconsistent hash-comment separators (using `#   ` prefix with
spaces) with a uniform dash-based style across the CI pipeline YAML
file, and add a `*.bak*` glob to the project's `.gitignore` to exclude
backup files from version control.
2026-07-08 08:40:46 +00:00

90 lines
2.7 KiB
Plaintext

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/