mirror of
https://github.com/viarotel-org/escrcpy.git
synced 2024-11-14 18:57:40 +01:00
28 lines
690 B
JavaScript
28 lines
690 B
JavaScript
module.exports = {
|
|
extends: ['@antfu'],
|
|
rules: {
|
|
'antfu/top-level-function': 'off',
|
|
'no-unused-vars': 'off',
|
|
'eqeqeq': 'off',
|
|
'prefer-promise-reject-errors': 'off',
|
|
'no-new-func': 'off',
|
|
'curly': 'off',
|
|
'no-console': 'off',
|
|
'unused-imports/no-unused-vars': 'off',
|
|
|
|
'import/default': 'off',
|
|
|
|
'vue/no-mutating-props': 'off',
|
|
'vue/no-use-v-if-with-v-for': 'off',
|
|
'vue/html-self-closing': 'off',
|
|
'vue/block-order': 'off',
|
|
'vue/no-unused-refs': 'off',
|
|
'vue/component-tags-order': 'off',
|
|
|
|
'n/prefer-global/process': 'off',
|
|
|
|
'@typescript-eslint/no-invalid-this': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'off',
|
|
},
|
|
}
|