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 293c177 commit e1cd793Copy full SHA for e1cd793
Makefile
@@ -87,3 +87,13 @@ dist: clean ## builds source and wheel package
87
88
install: clean ## install the package to the active Python's site-packages
89
python setup.py install
90
+
91
+pyright: ## type check with pyright
92
+ pyright --pythonversion=3.7
93
+ pyright --pythonversion=3.11
94
95
+check: pyright lint ## check code quality with pyright, flake8, black and isort
96
+ echo "Checking code with black."
97
+ black --check .
98
+ echo "Sorting imports with isort."
99
+ isort --check-only --diff .
0 commit comments