-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
58 lines (42 loc) · 956 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
# .gitignore - List of filenames git should ignore
# Filenames that should be ignored wherever they appear
~$
#\.py(c|o)$
*.pyc
/objdir-dbg
#(?i)(^|/)TAGS$
#(^|/)ID$
#(^|/)\.DS_Store$
# Vim swap files.
#^\.sw.$
#.[^/]*\.sw.$
# User files that may appear at the root
^\.mozconfig
^mozconfig*
^configure$
^config\.cache$
^config\.log$
^\.clang_complete
# Empty marker file that's generated when we check out NSS
^security/manager/\.nss\.checkout$
# Build directories
^obj
# Build directories for js shell
#_DBG\.OBJ/
#_OPT\.OBJ/
# SpiderMonkey configury
^js/src/configure$
^js/src/autom4te.cache$
# SpiderMonkey test result logs
^js/src/tests/results-.*\.(html|txt)$
# Java HTML5 parser classes
^parser/html/java/(html|java)parser/
# SVN directories
#\.svn/
# HG directories
\.hg
# Ignore the files and directory that Eclipse IDE creates
#\.project$
#\.cproject$
#\.settings/
.DS_Store