From a937c6f3fa159544c3a0d7f87c5fd340aedb74d4 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Tue, 13 Aug 2019 14:32:54 -0700 Subject: [PATCH] Enable `mypy` in Makefile --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 477f34b..fcebe0d 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,7 @@ format: isort --recursive $(FILES_TO_LINT) lintroll: - # NOTE: disabling `mypy` until we get typing sorted in this repo - # mypy -p libp2p -p examples --config-file {toxinidir}/mypy.ini + mypy -p libp2p -p examples --config-file mypy.ini black --check $(FILES_TO_LINT) isort --recursive --check-only $(FILES_TO_LINT) flake8 $(FILES_TO_LINT)