|
| 1 | +[tool.pyright] |
| 2 | +pythonVersion = "3.9" |
| 3 | +include = ["ckanext"] |
| 4 | +exclude = [ |
| 5 | + "**/tests", |
| 6 | + "**/migration", |
| 7 | +] |
| 8 | +extraPaths = [ |
| 9 | + "../../lib/python3.9/site-packages", |
| 10 | + "../.", |
| 11 | + "../ckan", |
| 12 | +] |
| 13 | +strict = [] |
| 14 | +strictParameterNoneValue = true |
| 15 | +reportFunctionMemberAccess = true |
| 16 | +reportMissingImports = true |
| 17 | +reportMissingModuleSource = true |
| 18 | +reportMissingTypeStubs = false |
| 19 | +reportImportCycles = false |
| 20 | +reportUnusedImport = true |
| 21 | +reportUnusedClass = true |
| 22 | +reportUnusedFunction = true |
| 23 | +reportUnusedVariable = true |
| 24 | +reportDuplicateImport = true |
| 25 | +reportOptionalSubscript = true |
| 26 | +reportOptionalMemberAccess = true |
| 27 | +reportOptionalCall = true |
| 28 | +reportOptionalIterable = true |
| 29 | +reportOptionalContextManager = true |
| 30 | +reportOptionalOperand = true |
| 31 | +reportTypedDictNotRequiredAccess = false |
| 32 | +reportConstantRedefinition = true |
| 33 | +reportIncompatibleMethodOverride = false |
| 34 | +reportIncompatibleVariableOverride = true |
| 35 | +reportOverlappingOverload = true |
| 36 | +reportUntypedFunctionDecorator = false |
| 37 | +reportUnknownParameterType = true |
| 38 | +reportUnknownArgumentType = false |
| 39 | +reportUnknownLambdaType = false |
| 40 | +reportUnknownMemberType = false |
| 41 | +reportMissingTypeArgument = true |
| 42 | +reportInvalidTypeVarUse = true |
| 43 | +reportCallInDefaultInitializer = true |
| 44 | +reportUnknownVariableType = false |
| 45 | +reportUntypedBaseClass = true |
| 46 | +reportUnnecessaryIsInstance = true |
| 47 | +reportUnnecessaryCast = true |
| 48 | +reportUnnecessaryComparison = true |
| 49 | +reportAssertAlwaysTrue = true |
| 50 | +reportSelfClsParameterName = true |
| 51 | +reportUnusedCallResult = false |
| 52 | +useLibraryCodeForTypes = true |
| 53 | +reportGeneralTypeIssues = true |
| 54 | +reportPropertyTypeMismatch = true |
| 55 | +reportWildcardImportFromLibrary = true |
| 56 | +reportUntypedClassDecorator = false |
| 57 | +reportUntypedNamedTuple = true |
| 58 | +reportPrivateUsage = false |
| 59 | +reportPrivateImportUsage = true |
| 60 | +reportInconsistentConstructor = true |
| 61 | +reportMissingSuperCall = false |
| 62 | +reportUninitializedInstanceVariable = false |
| 63 | +reportInvalidStringEscapeSequence = true |
| 64 | +reportMissingParameterType = true |
| 65 | +reportImplicitStringConcatenation = false |
| 66 | +reportUndefinedVariable = true |
| 67 | +reportUnboundVariable = true |
| 68 | +reportInvalidStubStatement = true |
| 69 | +reportIncompleteStub = true |
| 70 | +reportUnsupportedDunderAll = true |
| 71 | +reportUnusedCoroutine = true |
| 72 | +reportUnnecessaryTypeIgnoreComment = true |
| 73 | +reportMatchNotExhaustive = true |
0 commit comments