md/eslint.config.mjs
Libin YANG a9fa4c2824
Some checks failed
Build and Deploy / build-and-deploy (push) Has been skipped
Build and Push Docker Images / build (push) Failing after 1m0s
feat: build and deploy docker image (#495)
2024-12-23 19:59:59 +08:00

18 lines
387 B
JavaScript

import antfu from '@antfu/eslint-config'
export default antfu({
vue: true,
unocss: true,
typescript: true,
formatters: true,
ignores: [`.github`, `scripts`, `docker`, `md-cli`, `src/assets`, `example`],
}, {
rules: {
'semi': [`error`, `never`],
'quotes': [`error`, `backtick`],
'no-unused-vars': `off`,
'no-console': `off`,
'no-debugger': `off`,
},
})