feat(vue): sort-keys

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-19 15:12:58 +04:00
parent b4225e3424
commit 1f204d1b8d
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 35 additions and 0 deletions

View File

@ -593,6 +593,7 @@
- [ ] "return-in-computed-property"
- [X] "script-indent"
- [ ] "singleline-html-element-content-newline"
- [X] "sort-keys"
- [X] "space-infix-ops"
- [ ] "space-unary-ops"
- [ ] "static-class-names-order"

View File

@ -91,6 +91,40 @@
"switchCase": 1
}
],
"vue/sort-keys": [
"warn",
"asc",
{
"caseSensitive": true,
"ignoreChildrenOf": [
"model"
],
"ignoreGrandchildrenOf": [
"activated",
"beforeCreate",
"beforeDestroy",
"beforeMount",
"beforeUpdate",
"components",
"computed",
"created",
"data",
"deactivated",
"destroyed",
"directives",
"errorCaptured",
"filters",
"methods",
"mounted",
"name",
"props",
"updated",
"watch"
],
"minKeys": 2,
"natural": true
}
],
"vue/space-infix-ops": [
"error",
{