fix: 更新ESLint配置,禁用空对象类型的规则

This commit is contained in:
ngc2207 2024-11-12 20:02:03 +08:00
parent f20e9db186
commit 57c7c09ca4

View File

@ -1,6 +1,4 @@
{
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"@typescript-eslint/no-empty-interface": "off"
}
"rules": { "@typescript-eslint/no-empty-object-type": "off" }
}