mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-15 11:23:22 +01:00
17 lines
334 B
JavaScript
17 lines
334 B
JavaScript
module.exports = {
|
|
extends: ['@viarotel-org'],
|
|
rules: {
|
|
'no-unused-vars': 'off',
|
|
'eqeqeq': 'off',
|
|
'prefer-promise-reject-errors': 'off',
|
|
'no-new-func': 'off',
|
|
|
|
'antfu/top-level-function': 'off',
|
|
|
|
'import/default': 'off',
|
|
|
|
'vue/no-mutating-props': 'off',
|
|
'vue/no-use-v-if-with-v-for': 'off',
|
|
},
|
|
}
|