From 894c1c977cb3ae92cdebdc9ec4740bc9834bd0d5 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Fri, 17 Jul 2026 15:14:38 -0500 Subject: [PATCH] Set `warn_unused_ignores = true` in my config It seems like a good idea to propagate https://github.com/Qiskit/qiskit-fermions/pull/189 across addons in order to remove outdated ignore comments. This repo will be a good starting point since we typically use it as a basis for new packages. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 9530f31..e9b8776 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -105,6 +105,7 @@ python_version = "3.10" show_error_codes = true warn_return_any = true warn_unused_configs = true +warn_unused_ignores = true ignore_missing_imports = true [tool.pylint.main]