Skip to content

Commit c065fcb

Browse files
committed
Add gitignore
0 parents  commit c065fcb

File tree

1 file changed

+147
-0
lines changed

1 file changed

+147
-0
lines changed

.gitignore

Lines changed: 147 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
2+
# Files #
3+
#########
4+
5+
6+
# Directories #
7+
###############
8+
reports/
9+
build/
10+
11+
# Compiled source #
12+
###################
13+
*.com
14+
*.class
15+
*.dll
16+
*.exe
17+
*.o
18+
*.so
19+
*.slo
20+
*.lo
21+
*.obj
22+
*.dylib
23+
*.dll
24+
*.lai
25+
*.la
26+
*.a
27+
*.lib
28+
*.ko
29+
*.elf
30+
31+
# Precompiled headers #
32+
#######################
33+
*.gch
34+
*.pch
35+
36+
# Executables #
37+
###############
38+
*.exe
39+
*.out
40+
*.app
41+
42+
# Packages #
43+
############
44+
# it's better to unpack these files and commit the raw source
45+
# git has its own built in compression methods
46+
*.7z
47+
*.dmg
48+
*.gz
49+
*.iso
50+
*.jar
51+
*.rar
52+
*.tar
53+
*.zip
54+
55+
# Logs and databases #
56+
######################
57+
*.log
58+
*.sql
59+
*.sqlite
60+
61+
# OS generated files #
62+
######################
63+
.DS_Store
64+
.DS_Store?
65+
._*
66+
.Spotlight-V100
67+
.Trashes
68+
Icon?
69+
ehthumbs.db
70+
Thumbs.db
71+
Desktop.ini
72+
73+
# Temporary files #
74+
###################
75+
*~
76+
77+
# Node.js #
78+
###########
79+
/node_modules/
80+
pids
81+
*.pid
82+
*.seed
83+
84+
# Matlab #
85+
##########
86+
*.asv
87+
*.mex*
88+
89+
# Fortran #
90+
###########
91+
*.mod
92+
93+
# R #
94+
#####
95+
.Rhistory
96+
.Rapp.history
97+
.Rproj.user/
98+
99+
# Python #
100+
##########
101+
__pycache__/
102+
*.py[cod]
103+
*$py.class
104+
105+
# TeX #
106+
#######
107+
*.aux
108+
*.lof
109+
*.log
110+
*.lot
111+
*.fls
112+
*.out
113+
*.toc
114+
*.dvi
115+
*-converted-to.*
116+
*.bbl
117+
*.bcf
118+
*.blg
119+
*-blx.aux
120+
*-blx.bib
121+
*.brf
122+
*.run.xml
123+
*.fdb_latexmk
124+
*.synctex
125+
*.synctex.gz
126+
*.synctex.gz(busy)
127+
*.pdfsync
128+
*.alg
129+
*.loa
130+
acs-*.bib
131+
*.thm
132+
*.nav
133+
*.snm
134+
*.vrb
135+
*.acn
136+
*.acr
137+
*.glg
138+
*.glo
139+
*.gls
140+
*.brf
141+
*-concordance.tex
142+
*.tikz
143+
*-tikzDictionary
144+
*.idx
145+
*.ilg
146+
*.ind
147+
*.ist

0 commit comments

Comments
 (0)