This commit is contained in:
2024-06-15 02:11:49 +03:00
parent 7a67051ae0
commit d02e35e0d7
82 changed files with 31138 additions and 19 deletions

22
eslint.config.js Normal file
View File

@@ -0,0 +1,22 @@
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,
})