md/eslint.config.mjs
Honwhy Wang d37aedb95d
All checks were successful
Build and Deploy / build-and-deploy (push) Has been skipped
feat: use mp oss in website (#471)
* add example cloudflare worker proxy
* use wsrv.nl to host image request in website
2024-12-14 16:14:33 +08:00

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`,
},
})