feat(eslint): Rule "no-mixed-spaces-and-tabs"

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-14 01:16:26 +04:00
parent eb0ee565f9
commit 53aa29b89a
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 5 additions and 1 deletions

View File

@ -142,7 +142,7 @@
- [ ] "no-misleading-character-class"
- [ ] "no-mixed-operators"
- [ ] "no-mixed-requires"
- [ ] "no-mixed-spaces-and-tabs"
- [X] "no-mixed-spaces-and-tabs"
- [ ] "no-multi-assign"
- [X] "no-multi-spaces"
- [ ] "no-multi-str"

View File

@ -214,6 +214,10 @@
"ignoreArrayIndexes": false
}
],
"no-mixed-spaces-and-tabs": [
"error",
"smart-tabs"
],
"no-multi-spaces": [
"error",
{