Skip to content

Commit 05422b9

Browse files
committed
Clean up in .gitignore
1 parent 62fa9e1 commit 05422b9

File tree

2 files changed

+62
-26
lines changed

2 files changed

+62
-26
lines changed

.gitignore

Lines changed: 50 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,61 @@
1-
dist
2-
dist-*
3-
cabal-dev
4-
*.o
5-
*.hi
6-
*.chi
7-
*.chs.h
8-
*.DS_Store
9-
*.dyn_o
10-
*.dyn_hi
11-
.hpc
12-
.hsenv
1+
TAGS
2+
3+
##################################################
4+
# NPM
5+
node_modules
6+
7+
##################################################
8+
# Haskell
9+
10+
## Cabal Sandbox
1311
.cabal-sandbox/
1412
cabal.sandbox.config
13+
cabal.project.local
14+
15+
## Program Coverage
16+
.hpc
1517
*.prof
1618
*.aux
1719
*.hp
1820
*.eventlog
19-
.stack-work/
20-
cabal.project.local
21-
.HTF/
22-
TAGS
23-
*.vscode
24-
/out
21+
22+
## Test Framework
23+
.HTF
24+
25+
## Virtual Environment
26+
.hsenv
27+
28+
## Build files
2529
*.o
2630
*.hi
31+
*.chi
32+
*.chs.h
33+
*.dyn_o
34+
*.dyn_hi
35+
36+
##################################################
37+
# Binaries from `compiler`
2738
bin/*
28-
node_modules
29-
yarn.lock
30-
yarn-error.log
39+
40+
##################################################
41+
# Troupe Compiler (`troupec`) output
42+
out/*
43+
44+
##################################################
45+
# Editors
46+
47+
## Visual Studio Code
48+
*.vscode
49+
50+
## Vi
3151
*.swp
32-
bin/troupe
33-
bin/understudy
52+
53+
## Emacs
3454
*.#*
55+
*~
56+
57+
##################################################
58+
# Operating Systems
59+
60+
## MacOS
61+
*.DS_Store

compiler/.gitignore

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1+
##################################################
2+
# Stack artifacts
13
.stack-work/
4+
stack.yaml.lock
5+
6+
##################################################
7+
# Cabal artifacts
28
Troupe-compiler.cabal
9+
dist
10+
dist-*
11+
cabal-dev
12+
13+
##################################################
14+
# Local compilation output
315
ir2raw-out
4-
stack.yaml.lock
5-
*~
6-
out

0 commit comments

Comments
 (0)