Files

17 lines
295 B
JSON
Raw Permalink Normal View History

2026-05-26 13:37:55 +08:00
{
"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"
}
}