14 lines
372 B
JSON
14 lines
372 B
JSON
|
|
{
|
||
|
|
"env": { "browser": true, "es2021": true },
|
||
|
|
"extends": "eslint:recommended",
|
||
|
|
"parserOptions": { "ecmaVersion": 2021, "sourceType": "script" },
|
||
|
|
"rules": {
|
||
|
|
"no-unused-vars": "warn",
|
||
|
|
"no-undef": "off",
|
||
|
|
"no-empty": "warn",
|
||
|
|
"no-inner-declarations": "warn",
|
||
|
|
"semi": ["error", "always"],
|
||
|
|
"eqeqeq": "warn"
|
||
|
|
}
|
||
|
|
}
|