/ .gitignore
.gitignore
1 /nimcache 2 3 # Executables shall be put in an ignored build/ directory 4 /build 5 6 # Nimble packages 7 /vendor/.nimble 8 9 # Generated Files 10 *.generated.nim 11 12 # ntags/ctags output 13 /tags 14 15 # Ignore dynamic, static libs and libtool archive files 16 *.so 17 *.dylib 18 *.a 19 *.la 20 *.exe 21 *.dll 22 23 *.log 24 /.update.timestamp 25 26 *.nims