26 lines
563 B
JSON
26 lines
563 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2021,
|
|
"sourceType": "script"
|
|
},
|
|
"globals": {
|
|
"lt": "readonly",
|
|
"module": "writable"
|
|
},
|
|
"rules": {
|
|
"no-undef": "off",
|
|
"no-unused-vars": "warn",
|
|
"no-empty": "warn",
|
|
"no-inner-declarations": "warn",
|
|
"no-useless-escape": "warn",
|
|
"no-regex-spaces": "warn",
|
|
"semi": ["error", "always"],
|
|
"eqeqeq": "warn"
|
|
}
|
|
}
|