.gitignore 775 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. #/testresults.html #covered by /*.html
  50. /testresults.json
  51. testament.db
  52. /csources
  53. dist/
  54. # Private directories and files (IDEs)
  55. .*/
  56. ~*
  57. # testament cruft; TODO: generate these in a gitignore'd dir in the first place.
  58. testresults/
  59. test.txt
  60. /test.ini
  61. tweeter.db
  62. tweeter_test.db
  63. megatest.nim