mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
18 lines
362 B
JavaScript
18 lines
362 B
JavaScript
|
import antfu from '@antfu/eslint-config'
|
||
|
|
||
|
export default antfu({
|
||
|
vue: true,
|
||
|
unocss: true,
|
||
|
typescript: true,
|
||
|
formatters: true,
|
||
|
ignores: [`.github`, `bin`, `md-cli`, `src/assets`],
|
||
|
}, {
|
||
|
rules: {
|
||
|
'semi': [`error`, `never`],
|
||
|
'quotes': [`error`, `backtick`],
|
||
|
'no-unused-vars': `off`,
|
||
|
'no-console': `off`,
|
||
|
'no-debugger': `off`,
|
||
|
},
|
||
|
})
|