feat(typescript): Rule "semi"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 18:27:45 +04:00
parent 268f0c28af
commit 50a06b02ba
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 11 additions and 1 deletions

View File

@ -361,7 +361,7 @@
- [ ] "restrict-plus-operands"
- [ ] "restrict-template-expressions"
- [ ] "return-await"
- [ ] "semi"
- [X] "semi"
- [ ] "space-before-function-paren"
- [ ] "strict-boolean-expressions"
- [ ] "switch-exhaustiveness-check"

View File

@ -7,7 +7,17 @@
"avoidEscape": false
}
],
"@typescript-eslint/semi": [
"error",
"always",
{
"omitLastInOneLineBlock": false
}
],
"quotes": [
"off"
],
"semi": [
"off"
]
}