Disable vue/attributes-order in eslint

This commit is contained in:
AkiraFukushima 2023-01-02 09:42:16 +09:00
parent 0ca33e441e
commit 9f90ab97eb
No known key found for this signature in database
GPG Key ID: B6E51BAC4DE1A957
1 changed files with 2 additions and 1 deletions

View File

@ -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'
}
}