Skip to content

Commit 71a87ca

Browse files
committed
Add .hgignore file
The Firefox repository now contains a vendored copy of the Servo repository. The Firefox repository is canonically stored in Mercurial. If someone attempts to do Servo things in a checkout of the Firefox repository, they get a bunch of untracked files because there is no .hgignore file. This commit ports the .gitignore file to Mercurial.
1 parent cd2dbd7 commit 71a87ca

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.hgignore

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
^\.servo
2+
^\.cargo
3+
^\.servobuild
4+
^target/
5+
^ports/android/bin
6+
^ports/android/libs
7+
^ports/android/local.properties
8+
^ports/android/obj
9+
^python/_virtualenv
10+
^python/tidy/servo_tidy\.egg-info
11+
~$
12+
\.pkl$
13+
\.pyc$
14+
\.swp$
15+
\.swo$
16+
\.csv$
17+
18+
\.DS_Store$
19+
Servo\.app/
20+
\.config\.mk\.last$
21+
/glfw
22+
23+
# Editors
24+
25+
# IntelliJ
26+
\.idea
27+
\.iws$
28+
29+
# VSCode
30+
\.vscode

0 commit comments

Comments
 (0)