Hypfer-Valetudo/.automated_overrides.eslintrc.json
2022-07-24 09:17:29 +02:00

19 lines
436 B
JSON

{
"rules": {
"brace-style": ["error", "1tbs"],
"no-trailing-spaces": ["error", { "ignoreComments": true }],
"keyword-spacing": "error",
"eol-last": ["error", "always"],
"no-multi-spaces": ["error", { "ignoreEOLComments": true }],
"semi": ["error", "always"],
"quotes": ["error", "double"],
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"no-empty": "error"
}
}