We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 187cf8b commit 5013487Copy full SHA for 5013487
.pre-commit-config.yaml
@@ -26,3 +26,8 @@ repos:
26
"--rcfile=.pylintrc", # Link to your config file
27
]
28
stages: [pre-push]
29
+
30
+ # - repo: https://github.com/RobertCraigie/pyright-python
31
+ # rev: v1.1.389
32
+ # hooks:
33
+ # - id: pyright
pyproject.toml
@@ -53,6 +53,7 @@ dev = [
53
"mock",
54
"pyinstaller",
55
"mypy",
56
+ "pyright",
57
"github",
58
59
@@ -208,4 +209,10 @@ strict_equality = true
208
209
warn_unused_configs = true
210
211
files = ["ardupilot_methodic_configurator/*.py"]
-exclude = ["unittests"]
212
+exclude = ["unittests"]
213
214
+[tool.pyright]
215
+exclude = [".venv"]
216
+pythonVersion = "3.9"
217
+venvPath = "."
218
+venv = ".venv"
0 commit comments