mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-08-01 20:07:22 +02:00
Previously this rule has been enabled in the `web/` folder, and in select files in the `src/` sub-folders. In this case, enabling of this rule didn't actually require any further code changes. Please find additional details about the ESLint rule at https://eslint.org/docs/rules/no-var
11 lines
108 B
Plaintext
11 lines
108 B
Plaintext
{
|
|
"extends": [
|
|
"../../.eslintrc"
|
|
],
|
|
|
|
"rules": {
|
|
// ECMAScript 6
|
|
"no-var": "error",
|
|
},
|
|
}
|