19 lines
363 B
JavaScript
19 lines
363 B
JavaScript
|
module.exports = {
|
||
|
"env": {
|
||
|
"node": true,
|
||
|
"es6": true
|
||
|
},
|
||
|
"extends": "eslint:recommended",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 2020,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"rules": {
|
||
|
"no-console": "off",
|
||
|
"no-empty": "off",
|
||
|
"no-prototype-builtins": "off",
|
||
|
"no-unused-vars": "warn"
|
||
|
},
|
||
|
};
|
||
|
|