mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
All of browser/ JS code passes these eslint rules, so we can hoist them from subdirectories' .eslintrc to the common browser/.eslintrc. MozReview-Commit-ID: GMidHq0UIlH --HG-- extra : rebase_source : 802631e372bbf6c256f5236deb275cb05fd73894 extra : histedit_source : a87b58345ff471b2504244d90c4ea1aa149a3c86
36 lines
1.2 KiB
JavaScript
36 lines
1.2 KiB
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
"globals": {
|
|
"Iterator": true
|
|
},
|
|
|
|
"rules": {
|
|
"block-scoped-var": "error",
|
|
"comma-dangle": "off",
|
|
"comma-style": ["error", "last"],
|
|
"complexity": ["error", {"max": 21}],
|
|
"dot-notation": "error",
|
|
"indent": ["error", 2, {"SwitchCase": 1, "ArrayExpression": "first", "ObjectExpression": "first"}],
|
|
"max-nested-callbacks": ["error", 3],
|
|
"new-parens": "error",
|
|
"no-array-constructor": "error",
|
|
"no-control-regex": "error",
|
|
"no-eval": "error",
|
|
"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-sequences": "error",
|
|
"no-shadow": "error",
|
|
"no-throw-literal": "error",
|
|
"no-unneeded-ternary": "error",
|
|
"no-unused-vars": ["error", { "varsIgnorePattern": "^C[ciur]$" }],
|
|
"padded-blocks": ["error", "never"],
|
|
"semi": ["error", "always", {"omitLastInOneLineBlock": true }],
|
|
"semi-spacing": ["error", {"before": false, "after": true}],
|
|
"space-in-parens": ["error", "never"],
|
|
"strict": ["error", "global"],
|
|
"yoda": "error"
|
|
}
|
|
};
|