jspaint/.eslintrc.js

18 lines
420 B
JavaScript
Raw Normal View History

2019-09-13 20:58:57 +00:00
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"no-undef": 0, // FOR NOW OKAY? there are just tons of globals at the moment
"no-unused-vars": 0, // ditto
}
};