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