diff --git a/eslint.config.mjs b/eslint.config.mjs index e7eb400..62165d9 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -3,4 +3,19 @@ import antfu from '@antfu/eslint-config' export default antfu({ unocss: true, vue: true, + markdown: false, + ignores: [ + 'src/uni_modules/', + 'dist', + ], + rules: { + 'no-console': 'off', + 'no-unused-vars': 'off', + 'vue/no-unused-refs': 'off', + 'unused-imports/no-unused-vars': 'off', + 'eslint-comments/no-unlimited-disable': 'off', + 'jsdoc/check-param-names': 'off', + 'jsdoc/require-returns-description': 'off', + 'ts/no-empty-object-type': 'off', + }, })