forked from mozilla/releases-comm-central
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.hgignore
46 lines (36 loc) · 764 Bytes
/
.hgignore
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
# .hgignore - List of filenames hg should ignore
# Filenames that should be ignored wherever they appear
~$
\.pyc$
(^|/)TAGS$
(^|/)\.DS_Store$
# User files that may appear at the root
^\.mozconfig$
^mozconfig$
^\.mozconfig\.mk$
^\.mozconfig\.out$
^configure$
^config\.cache$
^config\.log$
^ID$
#treestate
^.treestate$
# Build directories
^obj-
^objdir-
# directories we check out from other repositories
^directory/c-sdk$
# ^mozilla$ <--- causes regex perf issues when present with fsmonitor. See Bug 1293993.
mozilla
^.mozilla-trunk$
# SVN directories
\.svn/
# Git repositories
.git/
# Ignore the files and directory that Eclipse IDE creates
\.project$
\.cproject$
\.settings/
# Ignore the files and directory that JetBrains IDEs create.
\.idea/
\.iml$