feat(eslint): Rule "semi-spacing"

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

View File

@ -255,7 +255,7 @@
- [ ] "require-yield"
- [ ] "rest-spread-spacing"
- [X] "semi"
- [ ] "semi-spacing"
- [X] "semi-spacing"
- [ ] "semi-style"
- [X] "sort-imports"
- [X] "sort-keys"

View File

@ -106,6 +106,13 @@
"omitLastInOneLineBlock": false
}
],
"semi-spacing": [
"error",
{
"after": true,
"before": false
}
],
"sort-imports": [
"error",
{