mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
25 lines
316 B
Text
25 lines
316 B
Text
|
{
|
||
|
"extends": [
|
||
|
"../.eslintrc"
|
||
|
],
|
||
|
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 5,
|
||
|
},
|
||
|
|
||
|
"env": {
|
||
|
"es6": false,
|
||
|
},
|
||
|
|
||
|
"globals": {
|
||
|
"pdfjsImageDecoders": false,
|
||
|
"pdfjsLib": false,
|
||
|
"pdfjsViewer": false,
|
||
|
"Uint8Array": false,
|
||
|
},
|
||
|
|
||
|
"rules": {
|
||
|
"object-shorthand": ["error", "never"]
|
||
|
}
|
||
|
}
|