Files
plex-playlist/backend/pyrightconfig.json
Cliff Hill 275363aa18
Some checks failed
Tests / Build and Push CICD Base Image (pull_request) Successful in 35m37s
Tests / Build and Push CICD Complete Image (pull_request) Failing after 23s
Tests / Trailing Whitespace Check (pull_request) Has been skipped
Tests / End of File Check (pull_request) Has been skipped
Tests / YAML Syntax Check (pull_request) Has been skipped
Tests / TOML Syntax Check (pull_request) Has been skipped
Tests / Mixed Line Ending Check (pull_request) Has been skipped
Tests / TOML Formatting Check (pull_request) Has been skipped
Tests / Ruff Linting (pull_request) Has been skipped
Tests / Ruff Format Check (pull_request) Has been skipped
Tests / Pyright Type Check (pull_request) Has been skipped
Tests / Darglint Docstring Check (pull_request) Has been skipped
Tests / No Docstring Types Check (pull_request) Has been skipped
Tests / ESLint Check (pull_request) Has been skipped
Tests / Prettier Format Check (pull_request) Has been skipped
Tests / TypeScript Type Check (pull_request) Has been skipped
Tests / TSDoc Lint Check (pull_request) Has been skipped
Tests / Backend Tests (pull_request) Has been skipped
Tests / Frontend Tests (pull_request) Has been skipped
Tests / Backend Doctests (pull_request) Has been skipped
Tests / Integration Tests (pull_request) Has been skipped
Tests / End-to-End Tests (pull_request) Has been skipped
Backend runtime upgraded.
Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
2026-05-15 19:24:59 -04:00

38 lines
1.1 KiB
JSON

{
"reportMissingImports": true,
"reportMissingTypeStubs": false,
"pythonVersion": "3.14",
"pythonPlatform": "Linux",
"venvPath": ".",
"venv": ".venv",
"pythonPath": ".venv/bin/python",
"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"
}