From 71a87ca004a8cb8c3b9655e20320e37c90e89d80 Mon Sep 17 00:00:00 2001 From: Gregory Szorc Date: Fri, 3 Feb 2017 18:42:52 -0800 Subject: [PATCH] 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. --- .hgignore | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .hgignore diff --git a/.hgignore b/.hgignore new file mode 100644 index 00000000000..32cd546b4a5 --- /dev/null +++ b/.hgignore @@ -0,0 +1,30 @@ +^\.servo +^\.cargo +^\.servobuild +^target/ +^ports/android/bin +^ports/android/libs +^ports/android/local.properties +^ports/android/obj +^python/_virtualenv +^python/tidy/servo_tidy\.egg-info +~$ +\.pkl$ +\.pyc$ +\.swp$ +\.swo$ +\.csv$ + +\.DS_Store$ +Servo\.app/ +\.config\.mk\.last$ +/glfw + +# Editors + +# IntelliJ +\.idea +\.iws$ + +# VSCode +\.vscode