pdf.js/external/.eslintrc
Jonas Jenwald 1cf116ab88 Enable the mozilla/use-includes-instead-of-indexOf ESLint rule globally
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.
2018-02-10 23:24:50 +01:00

16 lines
181 B
Plaintext

{
"extends": [
../.eslintrc
],
"env": {
"node": true,
},
"rules": {
"mozilla/use-includes-instead-of-indexOf": "off",
"object-shorthand": "off",
},
}