chad/client/eslint.config.mjs
Никита Круглицкий c365f3e885
All checks were successful
Deploy / deploy (push) Successful in 44s
#4
2025-10-03 02:36:38 +06:00

18 lines
289 B
JavaScript

import antfu from '@antfu/eslint-config'
export default antfu({
formatters: {
css: true,
},
overrides: {
typescript: {
'no-console': 'off',
},
vue: {
'vue/block-order': ['error', {
order: ['template', 'script', 'style'],
}],
},
},
})