File: .gitignore

package info (click to toggle)
haskell-futhark 0.25.15-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 17,256 kB
  • sloc: haskell: 95,014; ansic: 12,597; python: 3,368; yacc: 775; javascript: 558; sh: 403; lisp: 395; makefile: 271
file content (55 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (2)
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