23 lines
405 B
JavaScript
23 lines
405 B
JavaScript
import antfu from '@antfu/eslint-config'
|
|
|
|
export default antfu({
|
|
stylistic: {
|
|
indent: 4, // 4, or 'tab'
|
|
quotes: 'single', // or 'double'
|
|
},
|
|
|
|
react: true,
|
|
typescript: true,
|
|
vue: true,
|
|
astro: true,
|
|
|
|
rules: {
|
|
'no-console': 'off',
|
|
'curly': ['error', 'all'],
|
|
'node/prefer-global/process': 'off',
|
|
},
|
|
|
|
jsonc: false,
|
|
yaml: false,
|
|
})
|