5d14e68bec
Please find additional details about the ESLint rule at https://eslint.org/docs/rules/prefer-const Note that this patch is generated automatically, by using the ESLint `--fix` argument, and will thus require some additional clean-up (which is done separately).
15 lines
217 B
Plaintext
15 lines
217 B
Plaintext
{
|
|
"extends": [
|
|
"../.eslintrc"
|
|
],
|
|
|
|
"rules": {
|
|
// Plugins
|
|
"import/no-unresolved": ["error", { "ignore": ["pdfjs-lib"]}],
|
|
|
|
// ECMAScript 6
|
|
"no-var": "error",
|
|
"prefer-const": "error",
|
|
},
|
|
}
|