make: add mypy to lint target

This really is more of a linter (well, compiler, since it's type checking),
so let's add it to the lint target.

Signed-off-by: Tycho Andersen <tycho@tycho.pizza>
master
Tycho Andersen 2021-02-27 13:56:44 -07:00 committed by Guillaume Gelin
parent 3036639f7e
commit 8927bb63f5
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ check: ## Run the test suite
.PHONY: lint
lint: ## Check the source code
TOXENV=format,pep8,vulture tox
TOXENV=format,pep8,vulture,mypy tox
.PHONY: clean
clean: ## Clean generated files