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
|
2017-11-22 18:30:55 +00:00
|
|
|
# Ignore ID generated by idutils and un-ignore id directory (for Indonesian locale)
|
2011-10-26 16:25:40 +00:00
|
|
|
ID
|
2017-11-22 18:30:55 +00:00
|
|
|
!id/
|
2011-10-26 16:25:40 +00:00
|
|
|
.DS_Store*
|
2015-04-01 20:02:20 +00:00
|
|
|
*.pdb
|
2016-03-01 14:18:22 +00:00
|
|
|
*.egg-info
|
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
|
2016-02-25 15:01:55 +00:00
|
|
|
/old-configure
|
2011-11-15 11:57:26 +00:00
|
|
|
/config.cache
|
|
|
|
/config.log
|
2012-05-18 17:55:58 +00:00
|
|
|
/.clang_complete
|
2016-03-28 15:18:24 +00:00
|
|
|
/machrc
|
|
|
|
/.machrc
|
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
|
|
|
|
2017-04-25 14:30:38 +00:00
|
|
|
# gecko.log is generated by various test harnesses
|
|
|
|
/gecko.log
|
|
|
|
|
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
|
2016-02-25 15:01:55 +00:00
|
|
|
js/src/old-configure
|
2011-10-26 16:25:40 +00:00
|
|
|
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
|
|
|
|
2016-02-14 00:29:05 +00:00
|
|
|
# Ignore the files and directory that JetBrains IDEs create.
|
|
|
|
/.idea/
|
|
|
|
*.iml
|
2017-07-19 18:08:06 +00:00
|
|
|
# Android Monitor in Android Studio creates a captures/ directory.
|
|
|
|
/captures/
|
2016-02-14 00:29:05 +00:00
|
|
|
|
|
|
|
# Gradle cache.
|
|
|
|
/.gradle/
|
|
|
|
|
|
|
|
# Local Gradle configuration properties.
|
|
|
|
/local.properties
|
|
|
|
|
2012-09-19 18:20:19 +00:00
|
|
|
# Python virtualenv artifacts.
|
2017-05-25 15:48:03 +00:00
|
|
|
third_party/python/psutil/**/*.so
|
|
|
|
third_party/python/psutil/**/*.pyd
|
|
|
|
third_party/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
|
|
|
|
2016-07-26 16:35:42 +00:00
|
|
|
# Ignore node_modules directories in devtools
|
2016-09-11 16:38:51 +00:00
|
|
|
devtools/**/node_modules
|
2016-07-26 16:35:42 +00:00
|
|
|
|
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
|
|
|
|
2017-05-23 12:48:29 +00:00
|
|
|
# Third party metadata for web-platform-tests
|
|
|
|
testing/web-platform/products/
|
|
|
|
|
2014-12-23 03:49:04 +00:00
|
|
|
# Android Gradle artifacts.
|
|
|
|
mobile/android/gradle/.gradle
|
2015-09-30 13:44:48 +00:00
|
|
|
|
2016-03-01 14:18:22 +00:00
|
|
|
# XCode project cruft
|
2017-09-24 20:45:17 +00:00
|
|
|
/*.xcodeproj/
|
2016-03-01 14:18:22 +00:00
|
|
|
embedding/ios/GeckoEmbed/GeckoEmbed.xcodeproj/project.xcworkspace/xcuserdata
|
|
|
|
embedding/ios/GeckoEmbed/GeckoEmbed.xcodeproj/xcuserdata
|
|
|
|
|
2018-03-01 22:33:35 +00:00
|
|
|
# Rust/Cargo output from running `cargo` directly
|
|
|
|
^target/
|
2018-01-12 15:31:20 +00:00
|
|
|
|
2016-03-01 14:18:22 +00:00
|
|
|
# Ignore mozharness execution files
|
|
|
|
testing/mozharness/.tox/
|
|
|
|
testing/mozharness/build/
|
|
|
|
testing/mozharness/logs/
|
|
|
|
testing/mozharness/.coverage
|
|
|
|
testing/mozharness/nosetests.xml
|
|
|
|
|
2017-03-22 11:27:00 +00:00
|
|
|
# Ignore ESLint node_modules
|
|
|
|
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/
|
2016-03-01 14:18:22 +00:00
|
|
|
testing/talos/talos/tests/tp5n.zip
|
|
|
|
testing/talos/talos/tests/tp5n
|
|
|
|
testing/talos/talos/tests/devtools/damp.manifest.develop
|
2016-04-25 18:28:46 +00:00
|
|
|
|
2017-09-21 19:44:13 +00:00
|
|
|
# Ignore sync tps logs and reports
|
|
|
|
tps.log
|
|
|
|
tps_result.json
|
|
|
|
|
2016-04-25 18:28:46 +00:00
|
|
|
# Ignore files created when running a reftest.
|
|
|
|
lextab.py
|
2016-07-29 17:43:29 +00:00
|
|
|
|
|
|
|
# tup database
|
|
|
|
/.tup
|
2017-02-22 11:57:57 +00:00
|
|
|
|
|
|
|
# Ignore Visual Studio Code workspace files.
|
2017-05-04 15:03:54 +00:00
|
|
|
.vscode/*
|
2017-02-22 11:57:57 +00:00
|
|
|
!.vscode/extensions.json
|
2017-05-04 15:03:54 +00:00
|
|
|
!.vscode/tasks.json
|