2011-10-26 16:25:40 +00:00
|
|
|
# .gitignore - List of filenames git should ignore
|
|
|
|
|
|
|
|
# Filenames that should be ignored wherever they appear
|
|
|
|
*~
|
|
|
|
*.pyc
|
|
|
|
*.pyo
|
|
|
|
TAGS
|
|
|
|
tags
|
|
|
|
ID
|
|
|
|
.DS_Store*
|
2015-04-01 20:02:20 +00:00
|
|
|
*.pdb
|
2011-10-26 16:25:40 +00:00
|
|
|
|
|
|
|
# Vim swap files.
|
|
|
|
.*.sw[a-z]
|
|
|
|
|
2014-09-09 21:40:00 +00:00
|
|
|
# Emacs directory variable files.
|
|
|
|
**/.dir-locals.el
|
|
|
|
|
2011-10-26 16:25:40 +00:00
|
|
|
# User files that may appear at the root
|
2011-11-15 11:57:26 +00:00
|
|
|
/.mozconfig*
|
|
|
|
/mozconfig
|
|
|
|
/configure
|
|
|
|
/config.cache
|
|
|
|
/config.log
|
2012-05-18 17:55:58 +00:00
|
|
|
/.clang_complete
|
2012-09-26 16:43:54 +00:00
|
|
|
/mach.ini
|
2011-10-26 16:25:40 +00:00
|
|
|
|
|
|
|
# Empty marker file that's generated when we check out NSS
|
|
|
|
security/manager/.nss.checkout
|
|
|
|
|
|
|
|
# Build directories
|
2012-01-26 20:53:56 +00:00
|
|
|
/obj*/
|
2011-10-26 16:25:40 +00:00
|
|
|
|
|
|
|
# Build directories for js shell
|
2015-10-09 02:25:59 +00:00
|
|
|
_DBG.OBJ/
|
|
|
|
_OPT.OBJ/
|
2011-10-26 16:25:40 +00:00
|
|
|
|
|
|
|
# SpiderMonkey configury
|
|
|
|
js/src/configure
|
|
|
|
js/src/autom4te.cache
|
|
|
|
# SpiderMonkey test result logs
|
|
|
|
js/src/tests/results-*.html
|
|
|
|
js/src/tests/results-*.txt
|
|
|
|
|
|
|
|
# Java HTML5 parser classes
|
|
|
|
parser/html/java/htmlparser/
|
|
|
|
parser/html/java/javaparser/
|
2012-01-16 21:31:44 +00:00
|
|
|
|
|
|
|
# Ignore the files and directory that Eclipse IDE creates
|
2012-02-13 22:36:16 +00:00
|
|
|
.project
|
|
|
|
.cproject
|
|
|
|
.settings/
|
2012-09-19 18:20:19 +00:00
|
|
|
|
|
|
|
# Python virtualenv artifacts.
|
2015-08-27 10:24:18 +00:00
|
|
|
python/psutil/**/*.so
|
|
|
|
python/psutil/**/*.pyd
|
2012-09-19 18:20:19 +00:00
|
|
|
python/psutil/build/
|
2013-04-30 07:22:25 +00:00
|
|
|
|
|
|
|
# Ignore chrome.manifest files from the devtools loader
|
2015-09-21 17:07:31 +00:00
|
|
|
devtools/client/chrome.manifest
|
|
|
|
devtools/shared/chrome.manifest
|
2014-05-08 00:32:00 +00:00
|
|
|
|
|
|
|
# Tag files generated by GNU Global
|
|
|
|
GTAGS
|
|
|
|
GRTAGS
|
|
|
|
GSYMS
|
|
|
|
GPATH
|
2014-09-04 11:52:43 +00:00
|
|
|
|
|
|
|
# Git clone directory for updating web-platform-tests
|
|
|
|
testing/web-platform/sync/
|
2014-12-23 03:49:04 +00:00
|
|
|
|
|
|
|
# Android Gradle artifacts.
|
|
|
|
mobile/android/gradle/.gradle
|
2015-09-30 13:44:48 +00:00
|
|
|
|
|
|
|
# Ignore node_modules from eslint-plugin-mozilla
|
|
|
|
testing/eslint-plugin-mozilla/node_modules/
|
2015-10-13 16:35:42 +00:00
|
|
|
|
|
|
|
# Ignore talos virtualenv and tp5n files.
|
|
|
|
# The tp5n set is supposed to be decompressed at
|
|
|
|
# testing/talos/talos/page_load_test/tp5n in order to run tests like tps
|
|
|
|
# locally. Similarly, running talos requires a Python package virtual
|
|
|
|
# environment. Both the virtual environment and tp5n files end up littering
|
|
|
|
# the status command, so we ignore them.
|
|
|
|
testing/talos/.Python
|
|
|
|
testing/talos/bin/
|
|
|
|
testing/talos/include/
|
|
|
|
testing/talos/lib/
|
|
|
|
testing/talos/talos/page_load_test/tp5n/
|