-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
58 lines (47 loc) · 900 Bytes
/
.gitignore
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
56
57
58
#This the the canonical lab .gitignore file
#ignore typescript related stuff
dist
dist/*.js
dist/frontend/*.js
dist/backend/*.js
dist/grammar/*.js
grammar/grammar.ts
src/frontend/grammar/grammar.ts
credentials.py
*.pyc
extPrograms/tetris/build
extPrograms/tetris/kernel.img
extPrograms/tetris/kernel.list
extPrograms/tetris/kernel.map
extPrograms/tetris/tetris.s
extPrograms/tetris/source
input.wacc
#ignore temp files
*~
#ignore pdf files (just keep source files)
*.pdf
#ignore junk files from latex output
*.out
*.log
*.aux
*.dvi
*.ps
#ignore junk files from compiling C code
*.o
#ignore junk files from compiling Haskell code
*.hi
#ignore junk files from compiling Java code
*.class
#ignore junk files from running the WACC compiler
*.ast
#ignore the WACC tempory test_files copy
testing/test_files/
#ignore other junk files
*.backup
*.kate-swp
*.swp
*.snm
*.vrb
*.nav
*.toc
*.DS_Store