30 lines
770 B
JSON
30 lines
770 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly",
|
|
"PIXI": "readonly",
|
|
"UtageInfo": "readonly",
|
|
"TextFunctions": "readonly",
|
|
"Player": "readonly",
|
|
"Shaders": "readonly",
|
|
"baseDimensions": "readonly",
|
|
"commonFunctions": "readonly",
|
|
"audioController": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-unused-vars": [2, { "vars": "local", "argsIgnorePattern": "^(success|event|resource|delta|reject)$"}],
|
|
"no-empty": ["error", { "allowEmptyCatch": true }],
|
|
"no-mixed-spaces-and-tabs": "off"
|
|
}
|
|
}
|