feat(vue): object-curly-spacing

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-19 14:18:28 +04:00
parent 50fd33ae97
commit 79d28d317b
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 9 additions and 1 deletions

View File

@ -578,7 +578,7 @@
- [ ] "no-unused-vars"
- [ ] "no-use-v-if-with-v-for"
- [ ] "no-v-html"
- [ ] "object-curly-spacing"
- [X] "object-curly-spacing"
- [ ] "order-in-components"
- [ ] "prop-name-casing"
- [ ] "require-component-is"

View File

@ -68,6 +68,14 @@
"singleline": 8
}
],
"vue/object-curly-spacing": [
"error",
"always",
{
"arraysInObjects": false,
"objectsInObjects": false
}
],
"vue/script-indent": [
"error",
"tab",