2023-09-15 19:32:13 +08:00
|
|
|
module.exports = {
|
2023-10-16 00:18:24 +08:00
|
|
|
extends: ['@viarotel-org'],
|
2023-09-15 19:32:13 +08:00
|
|
|
rules: {
|
|
|
|
'no-unused-vars': 'off',
|
|
|
|
'eqeqeq': 'off',
|
|
|
|
'prefer-promise-reject-errors': 'off',
|
2023-10-26 17:50:45 +08:00
|
|
|
'no-new-func': 'off',
|
2023-10-19 11:44:17 +08:00
|
|
|
|
2023-09-15 19:32:13 +08:00
|
|
|
'antfu/top-level-function': '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',
|
2023-09-15 19:32:13 +08:00
|
|
|
},
|
|
|
|
}
|