escrcpy/.eslintrc.js

28 lines
690 B
JavaScript
Raw Normal View History

module.exports = {
2024-03-05 15:12:27 +08:00
extends: ['@antfu'],
rules: {
2024-03-05 15:12:27 +08:00
'antfu/top-level-function': 'off',
'no-unused-vars': 'off',
'eqeqeq': 'off',
'prefer-promise-reject-errors': 'off',
'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-16 00:18:24 +08:00
'import/default': 'off',
'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',
},
}