Created
July 10, 2023 08:52
-
-
Save overflowy/cd664646b25df92a6ffdaa63abd496ff to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"typeCheckingMode": "basic", | |
"strictListInference": true, | |
"strictDictionaryInference": false, | |
"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", | |
"reportIncompatibleMethodOverride": "error", | |
"reportIncompatibleVariableOverride": "error", | |
"reportInvalidStringEscapeSequence": "error", | |
"reportUnknownArgumentType": "error", | |
"reportUnknownLambdaType": "error", | |
"reportMissingTypeArgument": "error", | |
"reportUndefinedVariable": "error", | |
"reportUnboundVariable": "error", | |
"reportInvalidStubStatement": "error", | |
"reportInvalidTypeVarUse": "error", | |
"reportPropertyTypeMismatch": "error", | |
"reportSelfClsParameterName": "error", | |
"reportUnsupportedDunderAll": "error", | |
// Overlapping overloads cannot be enabled at this time because | |
// of the "fractions.Fraction.__pow__" method and "tasks.gather" function. | |
// mypy's overlapping overload logic misses these issues (see mypy | |
// issue #10143 and #10157). | |
"reportOverlappingOverload": "none", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment