Files
hassp.pyc/eslint.config.js
2025-06-08 20:06:03 +09:00

23 lines
428 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: false,
astro: true,
rules: {
'no-console': 'off',
'curly': ['error', 'all'],
'node/prefer-global/process': 'off',
},
jsonc: false,
yaml: false,
})