feat(eslint): no-trailing-spaces

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

View File

@ -192,7 +192,7 @@
- [X] "no-ternary"
- [ ] "no-this-before-super"
- [ ] "no-throw-literal"
- [ ] "no-trailing-spaces"
- [X] "no-trailing-spaces"
- [ ] "no-undef"
- [X] "no-undef-init"
- [X] "no-undefined"

View File

@ -375,6 +375,13 @@
"no-ternary": [
"off"
],
"no-trailing-spaces": [
"error",
{
"ignoreComments": false,
"skipBlankLines": false
}
],
"no-undef-init": [
"error"
],