This commit is contained in:
Nadar
2025-07-23 20:58:21 +03:00
commit 80616ccf51
30 changed files with 22512 additions and 0 deletions

17
eslint.config.js Normal file
View File

@@ -0,0 +1,17 @@
import antfu from '@antfu/eslint-config'
export default antfu({
rules: {
'antfu/top-level-function': 'off',
},
formatters: {
css: true,
},
overrides: {
vue: {
'vue/block-order': ['error', {
order: ['template', 'script', 'style'],
}],
},
},
})