templates/vitekit/__/vite-template-main/eslint.config.ts
2026-04-12 21:03:18 +03:00

18 lines
399 B
TypeScript

import antfu from '@antfu/eslint-config'
export default antfu({
stylistic: {
indent: 4,
quotes: 'single',
},
rules: {
'node/prefer-global/process': 0,
'no-unused-expressions': 0,
'style/operator-linebreak': 0,
'style/brace-style': 0,
'style/comma-dangle': 0,
'no-new': 0,
'antfu/consistent-chaining': 0,
},
})