gecko-dev/browser/components/migration/.eslintrc.js
Victor Porof b5a4cb3848 Bug 1558517 - Pre 3.0: Remove conflicting eslint rules, and turn on "curly: all" everywhere, r=standard8
Differential Revision: https://phabricator.services.mozilla.com/D34535

--HG--
extra : source : 74ed7ee773393d305c4e948a57a1b1e32b1f12e8
extra : intermediate-source : 403d0757d61683e0a85d0bb07768eb39fbd0af72
2019-06-28 17:14:01 +02:00

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",
}],
},
}],
};