javascript didn't have proper modules until es6 what the fuck bingo's code scares me so i hope i didn't break it when fixing the linting errors
21 lines
498 B
JSON
21 lines
498 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es6": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"globals": {
|
|
"Atomics": "readonly",
|
|
"SharedArrayBuffer": "readonly"
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": 2018,
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-console": "off",
|
|
"no-unused-vars": [2, { "argsIgnorePattern": "^(success|event|resource|delta|reject)$"}],
|
|
"no-empty": ["error", { "allowEmptyCatch": true }]
|
|
}
|
|
}
|