.gitignore 830 B

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