michael@0: # .hgignore - List of filenames hg should ignore michael@0: michael@0: # Filenames that should be ignored wherever they appear michael@0: ~$ michael@0: \.py(c|o)$ michael@0: (?i)(^|/)TAGS$ michael@0: (^|/)ID$ michael@0: (^|/)\.DS_Store$ michael@0: michael@0: # Vim swap files. michael@0: ^\.sw.$ michael@0: .[^/]*\.sw.$ michael@0: michael@0: # User files that may appear at the root michael@0: ^\.mozconfig michael@0: ^mozconfig* michael@0: ^configure$ michael@0: ^config\.cache$ michael@0: ^config\.log$ michael@0: ^\.clang_complete michael@0: ^mach.ini$ michael@0: michael@0: # Empty marker file that's generated when we check out NSS michael@0: ^security/manager/\.nss\.checkout$ michael@0: michael@0: # Build directories michael@0: ^obj michael@0: michael@0: # Build directories for js shell michael@0: _DBG\.OBJ/ michael@0: _OPT\.OBJ/ michael@0: michael@0: # SpiderMonkey configury michael@0: ^js/src/configure$ michael@0: ^js/src/autom4te.cache$ michael@0: # SpiderMonkey test result logs michael@0: ^js/src/tests/results-.*\.(html|txt)$ michael@0: michael@0: # Java HTML5 parser classes michael@0: ^parser/html/java/(html|java)parser/ michael@0: michael@0: # SVN directories michael@0: \.svn/ michael@0: michael@0: # Ignore the files and directory that Eclipse IDE creates michael@0: \.project$ michael@0: \.cproject$ michael@0: \.settings/ michael@0: michael@0: # Ignore the directory that JetBrains IDEs create michael@0: \.idea/ michael@0: michael@0: # Python stuff installed at build time. michael@0: ^python/psutil/.*\.so michael@0: ^python/psutil/.*\.pyd michael@0: ^python/psutil/build/ michael@0: michael@0: # Git repositories michael@0: .git/ michael@0: michael@0: # Ignore chrome.manifest files from the devtools loader michael@0: ^browser/devtools/chrome.manifest$ michael@0: ^toolkit/devtools/chrome.manifest$