Files
Nim/.gitignore
Hans Raaf 5263d9d6f0 Added .*/, ~* and *.log to GIT ignore list.
Using differend IDEs for the Nim compiler I am constantly running
into the problem that my global .gitignore is not working for the Nim
directory. This is caused by the `*` / `!*.*` like rules, which
reset all other rules. So I thought a bit about a sensible filtering
of common IDE special files and added that to the .gitignore.
2016-05-21 14:03:43 +02:00

50 lines
486 B
Plaintext

*
!**/
!*.*
nimcache/
*.o
!/icons/*.o
*.exe
*.so
*.dylib
*.zip
*.iss
*.log
mapping.txt
tags
install.sh
deinstall.sh
doc/*.html
doc/*.pdf
doc/*.idx
/web/upload
build/*
bin/*
# iOS specific wildcards.
*.mode1v3
*.pbxuser
*.perspective
*.perspectivev3
*.swp
.DS_Store
project.xcworkspace/
xcuserdata/
# Generated files.
/compile.json
/compiler/nimrod.dot
/reject.json
/run.json
/testresults.html
/testresults.json
testament.db
/csources
# Private directories and files (IDEs)
.*/
~*