refactor: align repo layout and logging safeguards

This commit is contained in:
qzl
2026-01-29 17:02:09 +08:00
parent 6af0989fe7
commit c2e65fa157
56 changed files with 1881 additions and 890 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"include": ["api"],
"exclude": ["**/__pycache__", "**/node_modules", "**/.git"],
"typeCheckingMode": "standard",
"pythonVersion": "3.12",
"pythonPlatform": "Linux",
"stubPath": "",
"extraPaths": [
"api/src"
],
"reportAssignmentType": "none",
"reportMissingImports": "error",
"reportMissingTypeStubs": "none",
"reportUnknownMemberType": "information",
"reportUnknownParameterType": "information",
"reportUnknownVariableType": "information",
"reportUntypedFunctionDecorator": "warning",
"reportUnannotatedClassAttribute": "warning",
"reportDeprecated": "warning",
"reportPrivateImportUsage": "none",
"reportImportCycles": "none"
}