bpmn-poc/eslint.config.js
Круглицкий Никита Витальевич b06ca2d99e Initial commit
2025-09-24 18:40:33 +06:00

24 lines
370 B
JavaScript

import antfu from '@antfu/eslint-config'
export default antfu({
ignores: [
'src/__generated__',
'scripts',
],
vue: {
vueVersion: 3,
sfcBlocks: false,
},
typescript: true,
formatters: {
css: true,
},
overrides: {
vue: {
'vue/block-order': ['error', {
order: ['template', 'script', 'style'],
}],
},
},
})