Skip to content

Commit f9fed24

Browse files
committed
ci(pyright): Use the same settings as on pyrightconfig.json
1 parent 38563ac commit f9fed24

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

pyproject.toml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,20 @@ warn_unused_configs = true
280280
files = ["ardupilot_methodic_configurator/*.py"]
281281

282282
[tool.pyright]
283-
exclude = [".venv"]
283+
include = [
284+
"ardupilot_methodic_configurator/*.py",
285+
"*.py",
286+
]
287+
exclude = [
288+
".git",
289+
".venv",
290+
"__pycache__",
291+
"__target__",
292+
"dist",
293+
]
294+
typeCheckingMode = "standard"
284295
pythonVersion = "3.9"
296+
pythonPlatform = "All"
297+
deprecateTypingAliases = true
285298
venvPath = "."
286299
venv = ".venv"

0 commit comments

Comments
 (0)