2023-09-15 13:32:13 +02:00
|
|
|
module.exports = {
|
2023-10-15 18:18:24 +02:00
|
|
|
extends: ['@viarotel-org'],
|
2023-09-15 13:32:13 +02:00
|
|
|
rules: {
|
|
|
|
'no-unused-vars': 'off',
|
|
|
|
'eqeqeq': 'off',
|
|
|
|
'prefer-promise-reject-errors': 'off',
|
2023-10-26 11:50:45 +02:00
|
|
|
'no-new-func': 'off',
|
2023-10-19 05:44:17 +02:00
|
|
|
|
2023-09-15 13:32:13 +02:00
|
|
|
'antfu/top-level-function': 'off',
|
2023-10-19 05:44:17 +02:00
|
|
|
|
2023-10-15 18:18:24 +02:00
|
|
|
'import/default': 'off',
|
2023-10-19 05:44:17 +02:00
|
|
|
|
|
|
|
'vue/no-mutating-props': 'off',
|
2023-11-02 08:08:19 +01:00
|
|
|
'vue/no-use-v-if-with-v-for': 'off',
|
2023-09-15 13:32:13 +02:00
|
|
|
},
|
|
|
|
}
|