Skip to content

Commit

Permalink
Fix Pyright paths in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
int19h committed Jan 4, 2024
1 parent 81ed1ca commit c91ae0e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,9 @@ exclude = '''
[tool.pyright]
pythonVersion = "3.12"
include = ["src/**", "tests/**"]
extraPaths = ["src/debugpy/_vendored/pydevd"]
extraPaths = ["src", "src/debugpy/_vendored/pydevd", "tests"]
ignore = ["src/debugpy/_vendored/pydevd", "src/debugpy/_version.py"]
executionEnvironments = [
{ root = "src" },
{ root = "." },
]
executionEnvironments = [{ root = "." }]

[tool.ruff]
# Enable the pycodestyle (`E`) and Pyflakes (`F`) rules by default.
Expand Down

0 comments on commit c91ae0e

Please sign in to comment.