1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/.hgignore Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,63 @@ 1.4 +# .hgignore - List of filenames hg should ignore 1.5 + 1.6 +# Filenames that should be ignored wherever they appear 1.7 +~$ 1.8 +\.py(c|o)$ 1.9 +(?i)(^|/)TAGS$ 1.10 +(^|/)ID$ 1.11 +(^|/)\.DS_Store$ 1.12 + 1.13 +# Vim swap files. 1.14 +^\.sw.$ 1.15 +.[^/]*\.sw.$ 1.16 + 1.17 +# User files that may appear at the root 1.18 +^\.mozconfig 1.19 +^mozconfig* 1.20 +^configure$ 1.21 +^config\.cache$ 1.22 +^config\.log$ 1.23 +^\.clang_complete 1.24 +^mach.ini$ 1.25 + 1.26 +# Empty marker file that's generated when we check out NSS 1.27 +^security/manager/\.nss\.checkout$ 1.28 + 1.29 +# Build directories 1.30 +^obj 1.31 + 1.32 +# Build directories for js shell 1.33 +_DBG\.OBJ/ 1.34 +_OPT\.OBJ/ 1.35 + 1.36 +# SpiderMonkey configury 1.37 +^js/src/configure$ 1.38 +^js/src/autom4te.cache$ 1.39 +# SpiderMonkey test result logs 1.40 +^js/src/tests/results-.*\.(html|txt)$ 1.41 + 1.42 +# Java HTML5 parser classes 1.43 +^parser/html/java/(html|java)parser/ 1.44 + 1.45 +# SVN directories 1.46 +\.svn/ 1.47 + 1.48 +# Ignore the files and directory that Eclipse IDE creates 1.49 +\.project$ 1.50 +\.cproject$ 1.51 +\.settings/ 1.52 + 1.53 +# Ignore the directory that JetBrains IDEs create 1.54 +\.idea/ 1.55 + 1.56 +# Python stuff installed at build time. 1.57 +^python/psutil/.*\.so 1.58 +^python/psutil/.*\.pyd 1.59 +^python/psutil/build/ 1.60 + 1.61 +# Git repositories 1.62 +.git/ 1.63 + 1.64 +# Ignore chrome.manifest files from the devtools loader 1.65 +^browser/devtools/chrome.manifest$ 1.66 +^toolkit/devtools/chrome.manifest$