1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
# Ignore non-directories in root, so you can use it as scratch space.
/*
!/*/
# The previous lines explicitly unignores .git
/.git
# Ignore Emacs autosave files.
\#*\#
.#*
*~
# Ignore IntelliJ configuration files
.idea/
# Ignore cabal build directory.
dist
dist-newstyle
# Ignore IDE info
.hie
.vscode
# Ignore side-effects of compilation.
*.aux
*.log
*.bbl
*.blg
*.out
*.prof
*.o
*.hi
*.snm
*.toc
*.vrb
*.nav
# Ignore core dumps.
core
core.*
# Ignore flymake-files created by Emacs.
*flymake*
# Ignore temporary backup directories.
*-backup
# Ignore directories often created by testing
data/
lib/
testparser/
# Ignore macOS system files.
.DS_Store
|