From 918750a953e117e87093a48f122ffdc595f43fa2 Mon Sep 17 00:00:00 2001 From: Daniel Himmelstein Date: Sat, 20 Jul 2024 09:02:41 -0400 Subject: [PATCH] pyproject ruff structure enforce mypy on tests which are already passing --- pyproject.toml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b2d7caf..16a52bf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,10 +55,12 @@ license-files = ["LICENSE.md"] [tool.ruff] target-version = "py38" +line-length = 88 + +[tool.ruff.lint] ignore = [ "E501", # line-too-long (black should handle) ] -line-length = 88 select = [ "B", # flake8-bugbear "C", # flake8-comprehensions @@ -86,7 +88,4 @@ module = [ ignore_missing_imports = true [[tool.mypy.overrides]] -module = [ - "tests.*", -] disallow_untyped_decorators = false \ No newline at end of file