17 lines
295 B
JSON
17 lines
295 B
JSON
{
|
|
"env": {
|
|
"node": true,
|
|
"commonjs": true,
|
|
"es2022": true
|
|
},
|
|
"extends": ["eslint:recommended"],
|
|
"parserOptions": {
|
|
"ecmaVersion": 2022
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }],
|
|
"no-console": "off",
|
|
"no-undef": "error"
|
|
}
|
|
}
|