pdf.js/src/shared/.eslintrc
Jonas Jenwald 666535be47 Prevent use of optional chaining and nullish coalescing in the src/shared/ folder
Given that this code is used on the worker-thread, where SystemJS is still used during development, we need to (for now) handle this folder the same way as the `src/core/` one.
2020-10-26 13:16:01 +01:00

14 lines
132 B
Plaintext

{
"parserOptions": {
"ecmaVersion": 2017,
},
"extends": [
"../.eslintrc"
],
"env": {
"es2017": true,
},
}