.gitignore 634 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ## Haskell build
  2. dist
  3. *.hi
  4. *.o
  5. .stack-work/
  6. ## Editor ignores
  7. TAGS
  8. *~
  9. *.swp
  10. ## databases
  11. test.db3
  12. *.sqlite3
  13. # ?
  14. tarballs/
  15. # install script error messages
  16. # maybe should use shellyNoDir ?
  17. .shelly/
  18. ## Cabal sandboxing tools
  19. .virthualenv
  20. cabal-dev/
  21. cabal.sandbox.config
  22. .cabal-sandbox/
  23. dist-newstyle/
  24. .ghc.environment.*
  25. ## Docker image ignores
  26. /.cabal/
  27. /.stackage/
  28. /.ghc/
  29. /.bash_history
  30. /.bashrc
  31. .mongorc.js
  32. .dbshell
  33. crane.yml
  34. # can use this for Docker databases
  35. persistent-test/db/
  36. # docker image with a mounted file system
  37. /x86_64-linux-ghc-7.8.3-packages.conf.d/
  38. /packages/
  39. # macOS
  40. .DS_Store
  41. # hspec nonsense
  42. .hspec-failures