16 lines
294 B
JavaScript
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',
|
|
},
|
|
},
|
|
|
|
)
|