From 4e8826fd2f43c5f4227844909cf3da5c9070c1c7 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 10 Jul 2022 18:39:06 +0100 Subject: [PATCH] Show error codes when running mypy --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 1f1286d..75a75d6 100644 --- a/justfile +++ b/justfile @@ -40,7 +40,7 @@ lint_python: black --check website isort --check website flake8 website - mypy website + mypy website --show-error-codes @lint_node: npm run lint