style(eslint): 统一代码缩进规范为4个空格

This commit is contained in:
log1997
2025-12-31 12:09:34 +08:00
parent f37412be3f
commit ae73097e1a

View File

@@ -8,6 +8,8 @@ export default antfu(
rules: { rules: {
'no-console': 'warn', 'no-console': 'warn',
'no-debugger': 'warn', 'no-debugger': 'warn',
'style/indent': ['error', 4],
'indent': ['error', 4, { 'SwitchCase': 1 }],
} }
}, },
) )