From 6d4cd04a2cb89cf89f1670c2a06dbe8e7c745a07 Mon Sep 17 00:00:00 2001 From: AkiraFukushima Date: Mon, 2 Jan 2023 09:45:36 +0900 Subject: [PATCH] Disable vue/attribute-hyphenation in eslint --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index e5e4fa33..8f559151 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -35,6 +35,7 @@ module.exports = { '@typescript-eslint/camelcase': 'off', 'space-before-function-paren': 'off', 'vue/multi-word-component-names': 'off', - 'vue/attributes-order': 'off' + 'vue/attributes-order': 'off', + 'vue/attribute-hyphenation': 'off' } }