2023-09-15 19:32:13 +08:00
|
|
|
module.exports = {
|
2024-03-05 15:12:27 +08:00
|
|
|
extends: ['@antfu'],
|
2023-09-15 19:32:13 +08:00
|
|
|
rules: {
|
2024-03-05 15:12:27 +08:00
|
|
|
'antfu/top-level-function': 'off',
|
2023-09-15 19:32:13 +08:00
|
|
|
'no-unused-vars': 'off',
|
|
|
|
'eqeqeq': 'off',
|
|
|
|
'prefer-promise-reject-errors': 'off',
|
2023-10-26 17:50:45 +08:00
|
|
|
'no-new-func': 'off',
|
2024-03-05 15:12:27 +08:00
|
|
|
'curly': 'off',
|
|
|
|
'no-console': 'off',
|
|
|
|
'unused-imports/no-unused-vars': 'off',
|
2023-10-19 11:44:17 +08:00
|
|
|
|
2023-10-16 00:18:24 +08:00
|
|
|
'import/default': 'off',
|
2023-10-19 11:44:17 +08:00
|
|
|
|
|
|
|
'vue/no-mutating-props': 'off',
|
2023-11-02 15:08:19 +08:00
|
|
|
'vue/no-use-v-if-with-v-for': 'off',
|
2024-03-05 15:12:27 +08:00
|
|
|
'vue/html-self-closing': 'off',
|
|
|
|
'vue/block-order': 'off',
|
|
|
|
'vue/no-unused-refs': 'off',
|
2024-03-09 20:15:36 +08:00
|
|
|
'vue/component-tags-order': 'off',
|
2024-03-05 15:12:27 +08:00
|
|
|
|
|
|
|
'n/prefer-global/process': 'off',
|
|
|
|
|
|
|
|
'@typescript-eslint/no-invalid-this': 'off',
|
2024-03-05 15:40:58 +08:00
|
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
2023-09-15 19:32:13 +08:00
|
|
|
},
|
|
|
|
}
|