mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
Update eslint rule
This commit is contained in:
parent
4e28ad4ac2
commit
303a226ab7
1 changed files with 3 additions and 3 deletions
|
@ -40,9 +40,9 @@ module.exports = {
|
|||
SwitchCase: 1,
|
||||
},
|
||||
],
|
||||
quotes: [ "warn", "double" ],
|
||||
quotes: [ "error", "double" ],
|
||||
semi: "error",
|
||||
"vue/html-indent": [ "warn", 4 ], // default: 2
|
||||
"vue/html-indent": [ "error", 4 ], // default: 2
|
||||
"vue/max-attributes-per-line": "off",
|
||||
"vue/singleline-html-element-content-newline": "off",
|
||||
"vue/html-self-closing": "off",
|
||||
|
@ -72,7 +72,7 @@ module.exports = {
|
|||
"keyword-spacing": "warn",
|
||||
"space-infix-ops": "warn",
|
||||
"arrow-spacing": "warn",
|
||||
"no-trailing-spaces": "warn",
|
||||
"no-trailing-spaces": "error",
|
||||
"no-constant-condition": [ "error", {
|
||||
"checkLoops": false,
|
||||
}],
|
||||
|
|
Loading…
Reference in a new issue