diff --git a/Makefile b/Makefile index 502f0885..91da904d 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ BLACK_DIRS ?= ./pyvistaqt/ ISORT_DIRS ?= ./pyvistaqt/*.py PYCODESTYLE_DIRS ?= ./pyvistaqt/ PYLINT_DIRS ?= ./pyvistaqt/ -MYPY_DIRS ?= ./pyvistaqt/ +MYPY_DIRS ?= "mypy_checklist.txt" FLAKE8_DIRS ?= ./pyvistaqt/ CODESPELL_DIRS ?= ./ CODESPELL_SKIP ?= "*.json,*.pyc,*.txt,*.gif,*.png,*.jpg,*.ply,*.vtk,*.vti,*.js,*.html,*.doctree,*.ttf,*.woff,*.woff2,*.eot,*.mp4,*.inv,*.pickle,*.ipynb,flycheck*,./.git/*,./.hypothesis/*,*.yml,./docs/_build/*,./docs/images/*,./dist/*,./.ci/*" @@ -36,7 +36,7 @@ pycodestyle: mypy: @echo "Running mypy" - @mypy $(MYPY_DIRS) + @mypy @$(MYPY_DIRS) flake8: @echo "Running flake8" diff --git a/mypy_checklist.txt b/mypy_checklist.txt new file mode 100644 index 00000000..d4be7635 --- /dev/null +++ b/mypy_checklist.txt @@ -0,0 +1,8 @@ +pyvistaqt/__init__.py +pyvistaqt/_version.py +pyvistaqt/counter.py +pyvistaqt/dialog.py +pyvistaqt/editor.py +pyvistaqt/plotting.py +pyvistaqt/utils.py +pyvistaqt/window.py