Files
web_templates/web/eslint.config.js
2025-06-26 23:00:16 +08:00

16 lines
294 B
JavaScript

import antfu from '@antfu/eslint-config'
export default antfu(
{
formatters: true,
vue: true,
ignores: ['node_modules', 'dist'],
rules: {
'vue/html-self-closing': 'off',
'antfu/top-level-function': 'off',
'ts/no-unsafe-function-type': 'off',
},
},
)