quantumbot-landing/eslint.config.js
Никита Круглицкий b3c99a667a Initial commit
2024-11-26 16:15:12 +03:00

12 lines
201 B
JavaScript

import antfu from '@antfu/eslint-config'
export default antfu({
overrides: {
vue: {
'vue/block-order': ['error', {
order: ['template', 'script', 'style'],
}],
},
},
})