feat(vue): no-multi-spaces

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-04-01 14:51:51 +04:00
parent a3a2934e43
commit fd0218c01e
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 7 additions and 1 deletions

View File

@ -568,7 +568,7 @@
- [ ] "no-duplicate-attributes" - [ ] "no-duplicate-attributes"
- [ ] "no-empty-pattern" - [ ] "no-empty-pattern"
- [ ] "no-irregular-whitespace" - [ ] "no-irregular-whitespace"
- [ ] "no-multi-spaces" - [X] "no-multi-spaces"
- [ ] "no-parsing-error" - [ ] "no-parsing-error"
- [ ] "no-reserved-component-names" - [ ] "no-reserved-component-names"
- [ ] "no-reserved-keys" - [ ] "no-reserved-keys"

View File

@ -76,6 +76,12 @@
"singleline": 8 "singleline": 8
} }
], ],
"vue/no-multi-spaces": [
"error",
{
"ignoreProperties": false
}
],
"vue/no-unused-vars": [ "vue/no-unused-vars": [
"error" "error"
], ],