feat(eslint): Rule "newline-before-return"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-13 14:49:25 +04:00
parent 98bae6b59b
commit f5078c0767
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -75,7 +75,7 @@
- [ ] "new-cap"
- [ ] "new-parens"
- [X] "newline-after-var"
- [ ] "newline-before-return"
- [X] "newline-before-return"
- [ ] "newline-per-chained-call"
- [ ] "no-alert"
- [ ] "no-array-constructor"

View File

@ -12,6 +12,9 @@
"newline-after-var": [
"off"
],
"newline-before-return": [
"off"
],
"no-tabs": [
"error",
{