25cb4883e9
This was done automatically, using the `gulp lint --fix` command.
27 lines
642 B
Plaintext
27 lines
642 B
Plaintext
{
|
|
// Note: The root .eslintrc file will define the base rules,
|
|
// but mozilla/recommended will override them for the rules it sets. Finally,
|
|
// the rules in this file will take precedence.
|
|
"extends": [
|
|
"plugin:mozilla/recommended",
|
|
],
|
|
|
|
"parserOptions": {
|
|
"sourceType": "module",
|
|
},
|
|
|
|
"plugins": [
|
|
"mozilla"
|
|
],
|
|
|
|
"rules": {
|
|
// Other rules mozilla/recommended hasn't enabled yet.
|
|
"no-shadow": "error",
|
|
"arrow-body-style": ["error", "as-needed"],
|
|
"arrow-parens": ["error", "always"],
|
|
"constructor-super": "error",
|
|
"no-confusing-arrow": "error",
|
|
"no-useless-constructor": "error",
|
|
},
|
|
}
|