feat(typescript): no-extra-semi

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-19 14:14:01 +04:00
parent 621602e88b
commit 99f00817e0
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 7 additions and 1 deletions

View File

@ -413,7 +413,7 @@
- [X] "no-explicit-any"
- [ ] "no-extra-non-null-assertion"
- [ ] "no-extra-parens"
- [ ] "no-extra-semi"
- [X] "no-extra-semi"
- [ ] "no-extraneous-class"
- [ ] "no-floating-promises"
- [ ] "no-for-in-array"

View File

@ -49,6 +49,9 @@
"ignoreRestArgs": false
}
],
"@typescript-eslint/no-extra-semi": [
"error"
],
"@typescript-eslint/no-implied-eval": [
"error"
],
@ -184,6 +187,9 @@
"indent": [
"off"
],
"no-extra-semi": [
"off"
],
"no-implied-eval": [
"off"
],