Disable vue/attribute-hyphenation in eslint

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

View File

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