From 3652048af574e14446ecb30f9eb1ad48d76a1c42 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 22 Apr 2022 22:03:51 -0400 Subject: [PATCH] Use the eslint override for multi-word components globally --- eslintrc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/eslintrc b/eslintrc index 88ac916..c999626 100644 --- a/eslintrc +++ b/eslintrc @@ -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" ],