.gitignore 842 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. *
  2. !**/
  3. !*.*
  4. # Cache
  5. nimcache/
  6. rnimcache/
  7. dnimcache/
  8. *.o
  9. !/icons/*.o
  10. *.obj
  11. *.ilk
  12. *.exp
  13. *.pdb
  14. *.lib
  15. *.dll
  16. *.exe
  17. *.so
  18. *.dylib
  19. *.zip
  20. *.iss
  21. *.log
  22. *.pdb
  23. mapping.txt
  24. tags
  25. install.sh
  26. deinstall.sh
  27. doc/html/
  28. doc/*.html
  29. doc/*.pdf
  30. doc/*.idx
  31. /web/upload
  32. /build/*
  33. bin/*
  34. # iOS specific wildcards.
  35. *.mode1v3
  36. *.pbxuser
  37. *.perspective
  38. *.perspectivev3
  39. *.swp
  40. .DS_Store
  41. .tags
  42. project.xcworkspace/
  43. xcuserdata/
  44. # Generated files.
  45. /compile.json
  46. /compiler/nim.dot
  47. /reject.json
  48. /run.json
  49. # for `nim doc foo.nim`
  50. /*.html
  51. lib/**/*.html
  52. #/testresults.html #covered by /*.html
  53. /testresults.json
  54. testament.db
  55. /csources
  56. dist/
  57. # Private directories and files (IDEs)
  58. .*/
  59. ~*
  60. # testament cruft; TODO: generate these in a gitignore'd dir in the first place.
  61. testresults/
  62. test.txt
  63. /test.ini
  64. tweeter.db
  65. tweeter_test.db
  66. megatest.nim
  67. /outputExpected.txt
  68. /outputGotten.txt