11 lines
189 B
JavaScript
11 lines
189 B
JavaScript
import antfu from '@antfu/eslint-config'
|
|
|
|
export default antfu({
|
|
// enable UnoCSS support
|
|
// https://unocss.dev/integrations/vscode
|
|
unocss: true,
|
|
rules: {
|
|
curly: 'off',
|
|
},
|
|
})
|