From fb876f13f73f2af567a37c2d31ffdb6cfa334f02 Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Tue, 6 Oct 2020 15:30:58 -0400 Subject: [PATCH] Use kebab-case for name-property-casing or it has a conflict with the other kebab-case style --- eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslintrc b/eslintrc index 1dde83e..ac01cec 100644 --- a/eslintrc +++ b/eslintrc @@ -132,7 +132,7 @@ "vue/max-attributes-per-line": [ "warn", { "singleline": 4, "multiline": { "max": 1, "allowFirstLine": false } } ], "vue/multiline-html-element-content-newline": "off", "vue/mustache-interpolation-spacing": [ "warn" ], - "vue/name-property-casing": [ "warn" ], + "vue/name-property-casing": [ "warn", "kebab-case" ], "vue/no-multi-spaces": [ "warn" ], "vue/prop-name-casing": [ "warn" ], "vue/require-default-prop": "off",