mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
23 lines
592 B
JavaScript
23 lines
592 B
JavaScript
// 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',
|
||
},
|
||
},
|
||
},
|
||
)
|