Skip to content

Commit eae8cff

Browse files
committed
Tweak bpr config
1 parent e411f8c commit eae8cff

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,18 @@ reportUnusedParameter = "hint"
158158
# https://github.com/microsoft/pyright/issues/746
159159
reportImportCycles = "none"
160160

161+
reportPrivateUsage = "hint"
162+
161163
pythonVersion = "3.10"
162164
pythonPlatform = "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]]
165174
root = "test"
166175
reportUnknownArgumentType = "hint"
@@ -172,3 +181,16 @@ reportArgumentType = "hint"
172181
reportPossiblyUnboundVariable = "hint"
173182
reportGeneralTypeIssues = "hint"
174183
reportOptionalSubscript = "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

Comments
 (0)