feat(typescript): space-before-function-paren
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
f8b812927a
commit
621602e88b
@ -460,7 +460,7 @@
|
||||
- [ ] "restrict-template-expressions"
|
||||
- [ ] "return-await"
|
||||
- [X] "semi"
|
||||
- [ ] "space-before-function-paren"
|
||||
- [X] "space-before-function-paren"
|
||||
- [X] "strict-boolean-expressions"
|
||||
- [ ] "switch-exhaustiveness-check"
|
||||
- [ ] "triple-slash-reference"
|
||||
|
@ -138,6 +138,14 @@
|
||||
"omitLastInOneLineBlock": false
|
||||
}
|
||||
],
|
||||
"@typescript-eslint/space-before-function-paren": [
|
||||
"error",
|
||||
{
|
||||
"anonymous": "always",
|
||||
"asyncArrow": "always",
|
||||
"named": "never"
|
||||
}
|
||||
],
|
||||
"@typescript-eslint/strict-boolean-expressions": [
|
||||
"error",
|
||||
{
|
||||
@ -199,5 +207,8 @@
|
||||
],
|
||||
"semi": [
|
||||
"off"
|
||||
],
|
||||
"space-before-function-paren": [
|
||||
"off"
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user