1cf116ab88
This rule is available from https://www.npmjs.com/package/eslint-plugin-mozilla, and is enforced in mozilla-central. Note that we have the necessary `Array`/`String` polyfills and that most cases have already been fixed, see PRs 9032 and 9434.
16 lines
181 B
Plaintext
16 lines
181 B
Plaintext
{
|
|
"extends": [
|
|
../.eslintrc
|
|
],
|
|
|
|
"env": {
|
|
"node": true,
|
|
},
|
|
|
|
"rules": {
|
|
"mozilla/use-includes-instead-of-indexOf": "off",
|
|
|
|
"object-shorthand": "off",
|
|
},
|
|
}
|