chore: 配置 basedpyright 将特定检查降级为警告

- reportMissingTypeArgument: 泛型类型参数警告(不影响运行)
- reportConstantRedefinition: 常量重定义警告(风格问题)
- reportMissingImports: 导入解析警告(部分模块未实现)
This commit is contained in:
qzl
2026-04-08 17:44:16 +08:00
parent c7920bcd43
commit 8cf0011720
-6
View File
@@ -56,9 +56,3 @@ reportImplicitRelativeImport = "warning"
reportMissingTypeArgument = "warning"
reportConstantRedefinition = "warning"
reportMissingImports = "warning"
reportGeneralTypeIssues = "warning"
reportUnannotatedClassAttribute = "warning"
reportUnknownMemberType = "warning"
reportUnknownVariableType = "warning"
reportUnsupportedDunderAll = "none"
reportDeprecated = "none"