components tag order added

This commit is contained in:
Bahadır Sofuoğlu
2022-11-07 15:13:51 +03:00
parent 98f567478e
commit 001de2be44
41 changed files with 1677 additions and 1695 deletions

View File

@@ -9,6 +9,12 @@ module.exports = {
},
rules: {
'vue/multi-word-component-names': 'off',
'vue/no-reserved-component-names': 'off'
'vue/no-reserved-component-names': 'off',
'vue/component-tags-order': [
'error',
{
order: ['script', 'template', 'style']
}
]
}
};