feat(eslint): Rule "semi"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 15:42:46 +04:00
parent a9f8e8c2e2
commit 70f1b5ba27
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 8 additions and 1 deletions

View File

@ -254,7 +254,7 @@
- [ ] "require-unicode-regexp"
- [ ] "require-yield"
- [ ] "rest-spread-spacing"
- [ ] "semi"
- [X] "semi"
- [ ] "semi-spacing"
- [ ] "semi-style"
- [X] "sort-imports"

View File

@ -99,6 +99,13 @@
"require-jsdoc": [
"off"
],
"semi": [
"error",
"always",
{
"omitLastInOneLineBlock": false
}
],
"sort-imports": [
"error",
{