nova-admin/eslint.config.js
2024-08-31 00:35:39 +08:00

20 lines
417 B
JavaScript

// eslint.config.js
import antfu from '@antfu/eslint-config'
// https://github.com/antfu/eslint-config
export default antfu(
{
typescript: {
overrides: {
'ts/no-unused-expressions': ['error', { allowShortCircuit: true }],
},
},
vue: {
overrides: {
'vue/no-reserved-component-names': 'off',
'vue/component-definition-name-casing': 'off',
},
},
},
)