26 lines
443 B
TypeScript
26 lines
443 B
TypeScript
import antfu from '@antfu/eslint-config'
|
|
|
|
export default antfu(
|
|
{
|
|
vue: true,
|
|
typescript: true,
|
|
|
|
// Enable UnoCSS support
|
|
// https://unocss.dev/integrations/vscode
|
|
unocss: true,
|
|
formatters: true,
|
|
},
|
|
{
|
|
rules: {
|
|
'perfectionist/sort-imports': 'off',
|
|
'perfectionist/sort-exports': 'off',
|
|
'perfectionist/sort-named-exports': 'off',
|
|
},
|
|
},
|
|
{
|
|
ignores: [
|
|
'.github/**',
|
|
],
|
|
},
|
|
)
|