MCSManager/.eslintrc.js
2020-10-08 17:45:01 +08:00

21 lines
450 B
JavaScript

module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"MCSERVER": true
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-unused-vars": "warn",
"no-use-before-define": "warn",
"no-undef": "warn"
}
};