From 815cde51bc717576310213f72bbae63a933af1c1 Mon Sep 17 00:00:00 2001 From: Nick Crews Date: Tue, 30 Aug 2022 09:32:34 -0800 Subject: [PATCH] dev: display specific mypy error codes Now you can #type: ignore[specific-code] --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 6d4674602..49ab77235 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,7 @@ plugins = "numpy.typing.mypy_plugin" ignore_missing_imports = true files = "dedupe" check_untyped_defs = true +show_error_codes = true [tool.pytest.ini_options] minversion = "7.1"