feat(eslint): Rule "lines-between-class-members"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 23:12:04 +04:00
parent 84ac571426
commit 21abdcaf63
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 8 additions and 1 deletions

View File

@ -60,7 +60,7 @@
- [X] "linebreak-style"
- [ ] "lines-around-comment"
- [X] "lines-around-directive"
- [ ] "lines-between-class-members"
- [X] "lines-between-class-members"
- [ ] "max-classes-per-file"
- [ ] "max-depth"
- [ ] "max-len"

View File

@ -110,6 +110,13 @@
"lines-around-directive": [
"off"
],
"lines-between-class-members": [
"error",
"always",
{
"exceptAfterSingleLine": false
}
],
"max-statements": [
"off"
],