feat(eslint): Rule "no-multi-spaces"

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

View File

@ -144,7 +144,7 @@
- [ ] "no-mixed-requires"
- [ ] "no-mixed-spaces-and-tabs"
- [ ] "no-multi-assign"
- [ ] "no-multi-spaces"
- [X] "no-multi-spaces"
- [ ] "no-multi-str"
- [ ] "no-multiple-empty-lines"
- [X] "no-native-reassign"

View File

@ -49,6 +49,13 @@
"no-catch-shadow": [
"off"
],
"no-multi-spaces": [
"error",
{
"exceptions": {},
"ignoreEOLComments": false
}
],
"no-native-reassign": [
"off"
],