mirror of
https://github.com/nim-lang/Nim.git
synced 2026-02-11 22:08:54 +00:00
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.
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -10,6 +10,7 @@ nimcache/
|
||||
*.dylib
|
||||
*.zip
|
||||
*.iss
|
||||
*.log
|
||||
|
||||
mapping.txt
|
||||
tags
|
||||
@@ -42,3 +43,7 @@ xcuserdata/
|
||||
/testresults.json
|
||||
testament.db
|
||||
/csources
|
||||
|
||||
# Private directories and files (IDEs)
|
||||
.*/
|
||||
~*
|
||||
|
||||
Reference in New Issue
Block a user