mirror of
https://github.com/doocs/md.git
synced 2025-01-22 20:04:39 +08:00
d37aedb95d
All checks were successful
Build and Deploy / build-and-deploy (push) Has been skipped
* add example cloudflare worker proxy * use wsrv.nl to host image request in website
18 lines
373 B
JavaScript
18 lines
373 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`, `example`],
|
|
}, {
|
|
rules: {
|
|
'semi': [`error`, `never`],
|
|
'quotes': [`error`, `backtick`],
|
|
'no-unused-vars': `off`,
|
|
'no-console': `off`,
|
|
'no-debugger': `off`,
|
|
},
|
|
})
|