File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -227,11 +227,19 @@ module = [
227
227
[tool .pyright ]
228
228
include = [
229
229
" pylint" ,
230
+ # not checking the tests yet, but we could
230
231
]
231
- pythonVersion = " 3.9 "
232
+ pythonVersion = " 3.10 "
232
233
typeCheckingMode = " basic"
233
- reportMissingImports = " none"
234
- reportMissingModuleSource = " none"
234
+ reportMissingImports = " none" # pytest / astroid are not detected
235
+ reportOptionalMemberAccess = " none" # 150 issues
236
+ reportArgumentType = " none" # 12 issues
237
+ reportAttributeAccessIssue = " none" # 11 issues
238
+ reportInvalidTypeForm = " none" # 6 issues
239
+ reportOptionalCall = " none" # 2 issues
240
+ reportGeneralTypeIssues = " none" # 1 issue
241
+ reportCallIssue = " none" # 1 issue
242
+ reportInvalidTypeVarUse = " none" # 2 warnings
235
243
236
244
[tool .aliases ]
237
245
test = " pytest"
You can’t perform that action at this time.
0 commit comments