feat(typescript): Rule "semi"
Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
parent
268f0c28af
commit
50a06b02ba
@ -361,7 +361,7 @@
|
|||||||
- [ ] "restrict-plus-operands"
|
- [ ] "restrict-plus-operands"
|
||||||
- [ ] "restrict-template-expressions"
|
- [ ] "restrict-template-expressions"
|
||||||
- [ ] "return-await"
|
- [ ] "return-await"
|
||||||
- [ ] "semi"
|
- [X] "semi"
|
||||||
- [ ] "space-before-function-paren"
|
- [ ] "space-before-function-paren"
|
||||||
- [ ] "strict-boolean-expressions"
|
- [ ] "strict-boolean-expressions"
|
||||||
- [ ] "switch-exhaustiveness-check"
|
- [ ] "switch-exhaustiveness-check"
|
||||||
|
@ -7,7 +7,17 @@
|
|||||||
"avoidEscape": false
|
"avoidEscape": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"@typescript-eslint/semi": [
|
||||||
|
"error",
|
||||||
|
"always",
|
||||||
|
{
|
||||||
|
"omitLastInOneLineBlock": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"quotes": [
|
"quotes": [
|
||||||
"off"
|
"off"
|
||||||
|
],
|
||||||
|
"semi": [
|
||||||
|
"off"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user