feat(eslint): no-whitespace-before-property

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-14 21:02:23 +04:00
parent 0419c2558d
commit 937a2257f8
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 4 additions and 1 deletions

View File

@ -219,7 +219,7 @@
- [X] "no-var" - [X] "no-var"
- [ ] "no-void" - [ ] "no-void"
- [ ] "no-warning-comments" - [ ] "no-warning-comments"
- [ ] "no-whitespace-before-property" - [X] "no-whitespace-before-property"
- [X] "no-with" - [X] "no-with"
- [ ] "nonblock-statement-body-position" - [ ] "nonblock-statement-body-position"
- [X] "object-curly-newline" - [X] "object-curly-newline"

View File

@ -449,6 +449,9 @@
"no-var": [ "no-var": [
"error" "error"
], ],
"no-whitespace-before-property": [
"error"
],
"no-with": [ "no-with": [
"error" "error"
], ],