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