@@ -158,9 +158,18 @@ reportUnusedParameter = "hint"
158158# https://github.com/microsoft/pyright/issues/746
159159reportImportCycles = " none"
160160
161+ reportPrivateUsage = " hint"
162+
161163pythonVersion = " 3.10"
162164pythonPlatform = " All"
163165
166+ ignore = [
167+ " pytential/symbolic/old_diffop_primitives.py" ,
168+ " pytential/symbolic/pde/maxwell/generalized_debye.py" ,
169+ " build" ,
170+ " doc/conf.py" ,
171+ ]
172+
164173[[tool .basedpyright .executionEnvironments ]]
165174root = " test"
166175reportUnknownArgumentType = " hint"
@@ -172,3 +181,16 @@ reportArgumentType = "hint"
172181reportPossiblyUnboundVariable = " hint"
173182reportGeneralTypeIssues = " hint"
174183reportOptionalSubscript = " hint"
184+ reportUnknownMemberType = " hint"
185+ reportUnknownVariableType = " hint"
186+ reportUnknownParameterType = " hint"
187+ reportMissingParameterType = " hint"
188+ reportAny = " none"
189+ reportImplicitOverride = " hint"
190+ reportUnannotatedClassAttribute = " hint"
191+ reportPrivateLocalImportUsage = " hint"
192+ reportPrivateImportUsage = " hint"
193+ reportPrivateUsage = " hint"
194+ reportUnknownLambdaType = " hint"
195+ reportMissingTypeStubs = " hint"
196+ reportUnusedImport = " none"
0 commit comments