mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 08:47:39 +08:00
52 lines
2.0 KiB
JSON
52 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/microsoft/pyright/main/packages/vscode-pyright/schemas/pyrightconfig.schema.json",
|
|
"typeshedPath": ".",
|
|
"include": [
|
|
"test_cases"
|
|
],
|
|
"typeCheckingMode": "basic",
|
|
"strictListInference": true,
|
|
"strictDictionaryInference": true,
|
|
"strictParameterNoneValue": true,
|
|
"reportFunctionMemberAccess": "error",
|
|
"reportMissingModuleSource": "none",
|
|
"reportMissingTypeStubs": "error",
|
|
"reportUnusedImport": "error",
|
|
"reportUnusedClass": "error",
|
|
"reportUnusedFunction": "error",
|
|
"reportUnusedVariable": "error",
|
|
"reportDuplicateImport": "error",
|
|
"reportOptionalSubscript": "error",
|
|
"reportOptionalMemberAccess": "error",
|
|
"reportOptionalCall": "error",
|
|
"reportOptionalIterable": "error",
|
|
"reportOptionalContextManager": "error",
|
|
"reportOptionalOperand": "error",
|
|
"reportUntypedFunctionDecorator": "error",
|
|
"reportUntypedClassDecorator": "error",
|
|
"reportUntypedBaseClass": "error",
|
|
"reportUntypedNamedTuple": "error",
|
|
"reportPrivateUsage": "none",
|
|
"reportConstantRedefinition": "error",
|
|
"reportInvalidStringEscapeSequence": "error",
|
|
"reportUnknownParameterType": "error",
|
|
"reportUnknownArgumentType": "error",
|
|
"reportUnknownLambdaType": "error",
|
|
"reportUnknownVariableType": "error",
|
|
"reportUnknownMemberType": "error",
|
|
"reportMissingTypeArgument": "error",
|
|
"reportUndefinedVariable": "error",
|
|
"reportUnboundVariable": "error",
|
|
"reportInvalidStubStatement": "error",
|
|
"reportInvalidTypeVarUse": "error",
|
|
"reportPropertyTypeMismatch": "error",
|
|
"reportSelfClsParameterName": "error",
|
|
"reportUnsupportedDunderAll": "error",
|
|
"reportIncompatibleMethodOverride": "error",
|
|
"reportIncompatibleVariableOverride": "error",
|
|
"reportOverlappingOverload": "error",
|
|
"reportUnnecessaryTypeIgnoreComment": "error",
|
|
"reportMissingTypeStubs": "error",
|
|
"reportMatchNotExhaustive": "error"
|
|
}
|