Skip to content
Snippets Groups Projects
Commit 01691f30 authored by Alexander Rose's avatar Alexander Rose
Browse files

lint: add keyword-spacing rule

parent 128abf30
No related branches found
No related tags found
No related merge requests found
Showing
with 52 additions and 50 deletions
...@@ -52,7 +52,8 @@ ...@@ -52,7 +52,8 @@
"space-before-function-paren": "off", "space-before-function-paren": "off",
"func-call-spacing": "off", "func-call-spacing": "off",
"no-multi-spaces": "error", "no-multi-spaces": "error",
"block-spacing": "error" "block-spacing": "error",
"keyword-spacing": "off"
}, },
"overrides": [ "overrides": [
{ {
...@@ -109,7 +110,8 @@ ...@@ -109,7 +110,8 @@
"named": "never", "named": "never",
"asyncArrow": "always" "asyncArrow": "always"
}], }],
"@typescript-eslint/func-call-spacing": ["error"] "@typescript-eslint/func-call-spacing": ["error"],
"@typescript-eslint/keyword-spacing": ["error"]
} }
} }
] ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment