|
@@ -3,4 +3,19 @@ import antfu from '@antfu/eslint-config'
|
|
|
export default antfu({
|
|
export default antfu({
|
|
|
unocss: true,
|
|
unocss: true,
|
|
|
vue: 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',
|
|
|
|
|
+ },
|
|
|
})
|
|
})
|