Skip to content

Commit

Permalink
Update pyright config
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Oct 15, 2024
1 parent c0670ab commit 26fcdd3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,18 @@ warn_unused_configs = true
warn_unused_ignores = true

[tool.pyright]
exclude=['**/node_modules','**/__pycache__','**/.*', 'build', 'dist']
deprecateTypingAliases = true
enableTypeIgnoreComments = false # leave these for mypy to interpret
exclude=['**/node_modules','**/__pycache__','**/.*', 'build', 'dist', 'target']
reportAttributeAccessIssue = false
reportCallIssue = true
reportMissingImports = false
reportPossiblyUnboundVariable = false
reportUnecessaryTypeIgnoreComment = true
reportUnknownVariableType = false
typeCheckingMode = "standard"
useLibraryCodeForTypes = false
targetVersion = "3.10"

[tool.pytest.ini_options]
addopts = " --durations=0 --typeguard-packages=pynonthermal -n auto"
Expand Down

0 comments on commit 26fcdd3

Please sign in to comment.