You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
765 B
47 lines
765 B
2 years ago
|
{
|
||
|
"parserOptions": {
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"globals": {
|
||
|
"WHATWGFetch": true,
|
||
|
"ArrayBuffer": true,
|
||
|
"DataView": true,
|
||
|
"Promise": true,
|
||
|
"Symbol": true,
|
||
|
"Uint8Array": true
|
||
|
},
|
||
|
"extends": [
|
||
|
"plugin:github/browser"
|
||
|
],
|
||
|
"rules": {
|
||
|
"object-shorthand": "off"
|
||
|
},
|
||
|
"overrides": [
|
||
|
{
|
||
|
"files": ["test/*.js"],
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"mocha": true
|
||
|
},
|
||
|
"globals": {
|
||
|
"assert": true,
|
||
|
"chai": true,
|
||
|
"FileReaderSync": true,
|
||
|
"Mocha": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": ["test/{karma,server}*.js"],
|
||
|
"env": {
|
||
|
"node": true
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"files": ["test/worker.js"],
|
||
|
"env": {
|
||
|
"worker": true
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|