Skip to content

Commit

Permalink
MNT: mypy checklist (#151)
Browse files Browse the repository at this point in the history
* update

* fix

* sort
  • Loading branch information
GuillaumeFavelier authored Mar 5, 2022
1 parent 4774de7 commit 8826078
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*"
Expand Down Expand Up @@ -36,7 +36,7 @@ pycodestyle:

mypy:
@echo "Running mypy"
@mypy $(MYPY_DIRS)
@mypy @$(MYPY_DIRS)

flake8:
@echo "Running flake8"
Expand Down
8 changes: 8 additions & 0 deletions mypy_checklist.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8826078

Please sign in to comment.