-
Notifications
You must be signed in to change notification settings - Fork 96
/
.hgignore
49 lines (36 loc) · 842 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
47
48
49
# .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
^ID$
#treestate
^.treestate$
# Build directories
^obj-
^objdir-
^.mozilla-trunk$
# SVN directories
\.svn/
# Git repositories
.git/
# Ignore the files and directory that Eclipse IDE creates
\.project$
\.cproject$
\.settings/
# Ignore the files and directories that JetBrains IDEs create
^\.idea/
\.iml$
# Ignore Storybook generated files
^mail/components/storybook/node_modules/
^mail/components/storybook/storybook-static/
^mail/components/storybook/.storybook/chrome-map.mjs
^mail/components/storybook/custom-elements.json
# Ignore third_party npm files
third_party/asn1js/node_modules/
# Ruff
\.ruff_cache/
# Built documentation
^rust/target/