yjs-bpmn-frontend/eslint.config.js
Круглицкий Никита Витальевич e53c007293 Initial commit
2025-11-20 20:59:38 +06:00

18 lines
283 B
JavaScript

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