Initial commit.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-18 09:14:10 -04:00
commit 9c4a8d96bc
12 changed files with 570 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
"reportMissingImports": true,
"reportMissingTypeStubs": false,
"pythonVersion": "3.13",
"pythonPlatform": "Linux",
"executionEnvironments": [
{
"root": "."
}
],
"typeCheckingMode": "strict",
"useLibraryCodeForTypes": true,
"reportGeneralTypeIssues": true,
"reportPropertyTypeMismatch": true,
"reportFunctionMemberAccess": true,
"reportMissingParameterType": true,
"reportMissingTypeArgument": true,
"reportIncompatibleMethodOverride": "error",
"reportIncompatibleVariableOverride": true,
"reportInconsistentConstructor": true,
"strictListInference": true,
"strictDictionaryInference": true,
"strictSetInference": true,
"reportCallInDefaultInitializer": true,
"reportUnnecessaryIsInstance": true,
"reportUnnecessaryCast": true,
"reportUnnecessaryComparison": true,
"reportUnnecessaryContains": true,
"reportImplicitStringConcatenation": true,
"reportUnusedCoroutine": true,
"reportPrivateUsage": "warning",
"reportConstantRedefinition": "warning",
"reportImplicitOverride": "warning"
}