-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
203 lines (195 loc) · 3.51 KB
/
.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# This file contains a list of extended regular expressions, one per
# line. A file path matching any of these expressions will be filtered
# out during `darcs add`, or when the `--look-for-adds` flag is passed
# to `darcs whatsnew` and `record`. The entries in ~/.darcs/boring (if
# it exists) supplement those in this file.
#
# Blank lines, and lines beginning with an octothorpe (#) are ignored.
# See regex(7) for a description of extended regular expressions.
.direnv
result
.stack-work/
_darcs/
### compiler and interpreter intermediate files
# haskell (ghc) interfaces
\.hi$
\.hi-boot$
\.o-boot$
# object files
\.o$
\.o\.cmd$
# profiling haskell
\.p_hi$
\.p_o$
# haskell program coverage resp. profiling info
\.tix$
\.prof$
# fortran module files
\.mod$
# linux kernel
\.ko\.cmd$
\.mod\.c$
(^|/)\.tmp_versions/
# *.ko files aren't boring by default because they might
# be Korean translations rather than kernel modules
# \.ko$
# python, emacs, java byte code
\.py[co]$
\.elc$
\.class$
# objects and libraries; lo and la are libtool things
\.(obj|a|exe|so|lo|la)$
# compiled zsh configuration files
\.zwc$
# Common LISP output files for CLISP and CMUCL
\.(fas|fasl|sparcf|x86f)$
### build and packaging systems
# cabal intermediates
\.installed-pkg-config
\.setup-config
# standard cabal build dir, might not be boring for everybody
# ^dist(/|$)
# autotools
(^|/)autom4te\.cache/
(^|/)config\.(log|status)$
# microsoft web expression, visual studio metadata directories
\_vti_cnf$
\_vti_pvt$
# gentoo tools
\.revdep-rebuild.*
# generated dependencies
^\.depend$
### version control systems
# cvs
(^|/)CVS/
\.cvsignore$
# cvs, emacs locks
^\.#
# rcs
(^|/)RCS/
,v$
# subversion
(^|/)\.svn/
# mercurial
(^|/)\.hg/
# git
(^|/)\.git/
# bzr
\.bzr$
# sccs
(^|/)SCCS/
# darcs
(^|/)_darcs/
(^|/)\.darcsrepo/
# gnu arch
(^|/)(\+|,)
(^|/)vssver\.scc$
\.swp$
(^|/)MT/
(^|/)\{arch\}/
(^|/).arch-ids/
# bitkeeper
(^|/)BitKeeper/
(^|/)ChangeSet/
### miscellaneous
# backup files
~$
\.bak$
\.BAK$
# patch originals and rejects
\.orig$
\.rej$
# X server
\..serverauth.*
# image spam
\#
(^|/)Thumbs\.db$
# vi, emacs tags
(^|/)(tags|TAGS)$
#(^|/)\.[^/]
# core dumps
(^|/|\.)core$
# partial broken files (KIO copy operations)
\.part$
# waf files, see http://code.google.com/p/waf/
(^|/)\.waf-[[:digit:].]+-[[:digit:]]+/
(^|/)\.lock-wscript$
# mac os finder
(^|/)\.DS_Store$
# emacs saved sessions (desktops)
(^|.*/)\.emacs\.desktop(\.lock)?$
# stack
(^|/)\.stack-work/
dist-newstyle/
passveil.1
# autotools
(^|/)autom4te\.cache/
(^|/)config\.(log|status)$
# microsoft web expression, visual studio metadata directories
\_vti_cnf$
\_vti_pvt$
# gentoo tools
\.revdep-rebuild.*
# generated dependencies
^\.depend$
### version control systems
# cvs
(^|/)CVS/
\.cvsignore$
# cvs, emacs locks
^\.#
# rcs
(^|/)RCS/
,v$
# subversion
(^|/)\.svn/
# mercurial
(^|/)\.hg/
# git
(^|/)\.git/
# bzr
\.bzr$
# sccs
(^|/)SCCS/
# darcs
(^|/)_darcs/
(^|/)\.darcsrepo/
# gnu arch
(^|/)(\+|,)
(^|/)vssver\.scc$
\.swp$
(^|/)MT/
(^|/)\{arch\}/
(^|/).arch-ids/
# bitkeeper
(^|/)BitKeeper/
(^|/)ChangeSet/
### miscellaneous
# backup files
~$
\.bak$
\.BAK$
# patch originals and rejects
\.orig$
\.rej$
# X server
\..serverauth.*
# image spam
\#
(^|/)Thumbs\.db$
# vi, emacs tags
(^|/)(tags|TAGS)$
#(^|/)\.[^/]
# core dumps
(^|/|\.)core$
# partial broken files (KIO copy operations)
\.part$
# waf files, see http://code.google.com/p/waf/
(^|/)\.waf-[[:digit:].]+-[[:digit:]]+/
(^|/)\.lock-wscript$
# mac os finder
(^|/)\.DS_Store$
# emacs saved sessions (desktops)
(^|.*/)\.emacs\.desktop(\.lock)?$
# stack
(^|/)\.stack-work/