Use the eslint override for multi-word components globally

This commit is contained in:
Kevin MacMartin 2022-04-22 22:03:51 -04:00
parent a535ddba36
commit 3652048af5

View file

@ -113,6 +113,14 @@
},
"overrides": [
{
"files": [ "*" ],
"rules": {
"vue/multi-word-component-names": "off"
}
},
{
"files": [ "*.vue" ],
@ -131,7 +139,6 @@
"vue/html-indent": "off",
"vue/html-self-closing": "off",
"vue/max-attributes-per-line": [ "warn", { "singleline": 4, "multiline": { "max": 1 } } ],
"vue/multi-word-component-names": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/mustache-interpolation-spacing": [ "warn" ],
"vue/name-property-casing": [ "warn", "kebab-case" ],