37 lines
441 B
Text
37 lines
441 B
Text
|
# Ignore build directories
|
||
|
build/
|
||
|
dist/
|
||
|
|
||
|
# Nim cache and generated files
|
||
|
nimcache/
|
||
|
*.nimble-link
|
||
|
*.nim.cfg
|
||
|
*.nimble
|
||
|
*.so
|
||
|
*.dll
|
||
|
*.dylib
|
||
|
*.exe
|
||
|
|
||
|
# Ignore specific NimScript files, but not config.nims
|
||
|
*.nims
|
||
|
|
||
|
# Ignore VS Code settings
|
||
|
.vscode/
|
||
|
|
||
|
# Logs and databases
|
||
|
*.log
|
||
|
*.lst
|
||
|
*.db
|
||
|
|
||
|
# Ignore any temporary files
|
||
|
*.tmp
|
||
|
*.swp
|
||
|
*.bak
|
||
|
*~
|
||
|
|
||
|
# If using nimpretty for code formatting
|
||
|
.nimpretty.cfg
|
||
|
|
||
|
# Exclude project files
|
||
|
!config.nims
|
||
|
!dashinit.nimble
|