1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/.gitignore Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,57 @@ 1.4 +# .gitignore - List of filenames git should ignore 1.5 + 1.6 +# Filenames that should be ignored wherever they appear 1.7 +*~ 1.8 +*.pyc 1.9 +*.pyo 1.10 +TAGS 1.11 +tags 1.12 +ID 1.13 +.DS_Store* 1.14 + 1.15 +# Vim swap files. 1.16 +.*.sw[a-z] 1.17 + 1.18 +# User files that may appear at the root 1.19 +#/.mozconfig* 1.20 +/mozconfig 1.21 +/configure 1.22 +/config.cache 1.23 +/config.log 1.24 +/.clang_complete 1.25 +/mach.ini 1.26 + 1.27 +# Empty marker file that's generated when we check out NSS 1.28 +security/manager/.nss.checkout 1.29 + 1.30 +# Build directories 1.31 +/obj*/ 1.32 + 1.33 +# Build directories for js shell 1.34 +*/_DBG.OBJ/ 1.35 +*/_OPT.OBJ/ 1.36 + 1.37 +# SpiderMonkey configury 1.38 +js/src/configure 1.39 +js/src/autom4te.cache 1.40 +# SpiderMonkey test result logs 1.41 +js/src/tests/results-*.html 1.42 +js/src/tests/results-*.txt 1.43 + 1.44 +# Java HTML5 parser classes 1.45 +parser/html/java/htmlparser/ 1.46 +parser/html/java/javaparser/ 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 +# Python virtualenv artifacts. 1.54 +python/psutil/*.so 1.55 +python/psutil/*.pyd 1.56 +python/psutil/build/ 1.57 + 1.58 +# Ignore chrome.manifest files from the devtools loader 1.59 +browser/devtools/chrome.manifest 1.60 +toolkit/devtools/chrome.manifest