92477333f6
The unit-test files themselves shouldn't be loaded until Jasmine has been setup/configured, however that doesn't matter for the "normal" PDF.js library files. Hence we can simply `import` them in the standard way.
14 lines
186 B
Plaintext
14 lines
186 B
Plaintext
{
|
|
"extends": [
|
|
"../.eslintrc"
|
|
],
|
|
|
|
"rules": {
|
|
// Plugins
|
|
"import/no-unresolved": ["error", { "ignore": ["pdfjs/"] }],
|
|
|
|
// ECMAScript 6
|
|
"no-var": "error",
|
|
},
|
|
}
|