// eslint.config.js import antfu from '@antfu/eslint-config' // https://github.com/antfu/eslint-config export default antfu( { typescript: { overrides: { 'perfectionist/sort-exports': 'off', 'perfectionist/sort-imports': 'off', 'ts/no-unused-expressions': ['error', { allowShortCircuit: true }], }, }, vue: { overrides: { 'vue/no-unused-refs': 'off', // 暂时关闭,等待vue-lint的分支合并 'vue/no-reserved-component-names': 'off', 'vue/component-definition-name-casing': 'off', }, }, }, )