Skip to content

Commit eab00cb

Browse files
authored
refactor: move pyrightconfig.json to pyproject.toml (#243)
# Description - move the `pyright` config from `pyrightconfig.json` to `pyproject.toml` to reduce the over all file count
1 parent ff577fc commit eab00cb

File tree

2 files changed

+14
-16
lines changed

2 files changed

+14
-16
lines changed

pyproject.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,17 @@ name = "testpypi"
9292
url = "https://test.pypi.org/simple/"
9393
publish-url = "https://test.pypi.org/legacy/"
9494
explicit = true
95+
96+
[tool.pyright]
97+
include = ["src"]
98+
exclude = [
99+
"**/__pycache__",
100+
"**/dist",
101+
"**/build",
102+
"**/node_modules",
103+
"**/venv",
104+
"**/.venv",
105+
"src/a2a/grpc/",
106+
]
107+
reportMissingImports = "none"
108+
reportMissingModuleSource = "none"

pyrightconfig.json

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)