This repository has been archived by the owner on Jul 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30,824 changed files
with
2,415,763 additions
and
1,132,380 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,70 @@ | ||
^mfbt/.* | ||
^js/.* | ||
^media/.* | ||
^build/clang-plugin/tests/.* | ||
^config/gcc-stl-wrapper.template.h | ||
^config/msvc-stl-wrapper.template.h | ||
^js/src/jsapi-tests/.* | ||
|
||
# Generated from ./tools/rewriting/ThirdPartyPaths.txt | ||
# awk '{print "^"$1".*"}' ./tools/rewriting/ThirdPartyPaths.txt | ||
^browser/components/translation/cld2/.* | ||
^build/stlport/.* | ||
^db/sqlite3/src/.* | ||
^dom/media/platforms/ffmpeg/libav.* | ||
^extensions/spellcheck/hunspell/src/.* | ||
^gfx/2d/convolver.* | ||
^gfx/2d/image_operations.* | ||
^gfx/angle/.* | ||
^gfx/cairo/.* | ||
^gfx/graphite2/.* | ||
^gfx/harfbuzz/.* | ||
^gfx/ots/.* | ||
^gfx/qcms/.* | ||
^gfx/skia/.* | ||
^gfx/ycbcr/.* | ||
^intl/hyphenation/hyphen/.* | ||
^intl/icu/.* | ||
^ipc/chromium/.* | ||
^js/src/ctypes/libffi/.* | ||
^js/src/dtoa.c.* | ||
^js/src/jit/arm64/vixl/.* | ||
^media/gmp-clearkey/0.1/openaes/.* | ||
^media/kiss_fft/.* | ||
^media/libav/.* | ||
^media/libcubeb/.* | ||
^media/libjpeg/.* | ||
^media/libmkv/.* | ||
^media/libnestegg/.* | ||
^media/libogg/.* | ||
^media/libopus/.* | ||
^media/libpng/.* | ||
^media/libsoundtouch/.* | ||
^media/libspeex_resampler/.* | ||
^media/libstagefright/.* | ||
^media/libtheora/.* | ||
^media/libtremor/.* | ||
^media/libvorbis/.* | ||
^media/libvpx/.* | ||
^media/libyuv/.* | ||
^media/mtransport/.* | ||
^media/openmax_dl/.* | ||
^media/pocketsphinx/.* | ||
^media/sphinxbase/.* | ||
^media/webrtc/trunk/.* | ||
^memory/jemalloc/src/.* | ||
^mfbt/decimal/.* | ||
^mfbt/double-conversion/.* | ||
^mfbt/lz4.* | ||
^mobile/android/thirdparty/.* | ||
^modules/brotli/.* | ||
^modules/freetype2/.* | ||
^modules/libbz2/.* | ||
^modules/libmar/.* | ||
^modules/zlib/.* | ||
^netwerk/sctp/src/.* | ||
^netwerk/srtp/src/.* | ||
^nsprpub/.* | ||
^other-licenses/.* | ||
^security/sandbox/chromium/.* | ||
^testing/gtest/gmock/.* | ||
^testing/gtest/gtest/.* | ||
^toolkit/components/protobuf/.* | ||
^toolkit/crashreporter/google-breakpad/.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Checks run by clang-tidy over Mozilla code. | ||
|
||
# The following checks are currently enabled: | ||
# * modernize-raw-string-literal - | ||
# Replace string literals containing escaped characters with raw string literals | ||
# * modernize-use-bool-literals | ||
# Replace integer literals which are cast to bool | ||
# * modernize-loop-convert | ||
# Converts for(...; ...; ...) loops to use the new range-based loops in C++11 | ||
# * modernize-use-default | ||
# Replace default bodies of special member functions with = default; | ||
# * modernize-use-override | ||
# Use C++11's override and remove virtual where applicable | ||
|
||
Checks: '-*, modernize-raw-string-literal, modernize-use-bool-literals, modernize-loop-convert, modernize-use-default, modernize-use-override' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
"use strict"; | ||
|
||
module.exports = { | ||
// When adding items to this file please check for effects on sub-directories. | ||
"plugins": [ | ||
"mozilla" | ||
], | ||
"rules": { | ||
"mozilla/import-globals": "warn", | ||
|
||
// No (!foo in bar) or (!object instanceof Class) | ||
"no-unsafe-negation": "error", | ||
}, | ||
"env": { | ||
"es6": true | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 8, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
[flake8] | ||
# See http://pep8.readthedocs.io/en/latest/intro.html#configuration | ||
ignore = E121, E123, E126, E129, E133, E226, E241, E242, E704, W503, E402 | ||
max-line-length = 99 | ||
filename = *.py, +.lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -879,6 +879,7 @@ Ryan Flint <[email protected]> | |
Ryan Jones <[email protected]> | ||
Ryan VanderMeulen <[email protected]> | ||
Ryoichi Furukawa <[email protected]> | ||
Sanyam Khurana <[email protected]> | ||
[email protected] | ||
Samir Gehani <[email protected]> | ||
Sammy Ford | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.