mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-04 11:26:09 +00:00
b5a4cb3848
Differential Revision: https://phabricator.services.mozilla.com/D34535 --HG-- extra : source : 74ed7ee773393d305c4e948a57a1b1e32b1f12e8 extra : intermediate-source : 403d0757d61683e0a85d0bb07768eb39fbd0af72
28 lines
714 B
JavaScript
28 lines
714 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"rules": {
|
|
"block-scoped-var": "error",
|
|
"complexity": ["error", {"max": 22}],
|
|
"max-nested-callbacks": ["error", 3],
|
|
"no-extend-native": "error",
|
|
"no-fallthrough": ["error", { "commentPattern": ".*[Ii]ntentional(?:ly)?\\s+fall(?:ing)?[\\s-]*through.*" }],
|
|
"no-multi-str": "error",
|
|
"no-return-assign": "error",
|
|
"no-shadow": "error",
|
|
"no-unused-vars": ["error", { "args": "after-used", "vars": "all" }],
|
|
"strict": ["error", "global"],
|
|
"yoda": "error"
|
|
},
|
|
|
|
"overrides": [{
|
|
"files": "tests/unit/head*.js",
|
|
"rules": {
|
|
"no-unused-vars": ["error", {
|
|
"args": "none",
|
|
"vars": "local",
|
|
}],
|
|
},
|
|
}],
|
|
};
|