.gitignore 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Created by https://www.gitignore.io/api/haskell,linux,sublimetext
  2. ### Haskell ###
  3. dist
  4. dist-*
  5. cabal-dev
  6. *.o
  7. *.hi
  8. *.chi
  9. *.chs.h
  10. *.dyn_o
  11. *.dyn_hi
  12. .hpc
  13. .hsenv
  14. .cabal-sandbox/
  15. cabal.sandbox.config
  16. *.prof
  17. *.aux
  18. *.hp
  19. *.eventlog
  20. .stack-work/
  21. *.cabal
  22. ### Linux ###
  23. *~
  24. # temporary files which can be created if a process still has a handle open of a deleted file
  25. .fuse_hidden*
  26. # KDE directory preferences
  27. .directory
  28. # Linux trash folder which might appear on any partition or disk
  29. .Trash-*
  30. ### SublimeText ###
  31. # cache files for sublime text
  32. *.tmlanguage.cache
  33. *.tmPreferences.cache
  34. *.stTheme.cache
  35. # workspace files are user-specific
  36. *.sublime-workspace
  37. # project files should be checked into the repository, unless a significant
  38. # proportion of contributors will probably not be using SublimeText
  39. # *.sublime-project
  40. # sftp configuration file
  41. sftp-config.json