From 8e305741fb9aecd3d1be6a609534863b4ec703ff Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Sat, 29 Jul 2023 17:27:03 -0700 Subject: [PATCH] remove unused ignores --- .ruff.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.ruff.toml b/.ruff.toml index 2afff489..1cfeeb74 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -21,10 +21,8 @@ ignore = [ "PLR2004", # Magic value used in comparison, consider replacing X with a constant variable "S101", # Use of assert detected "SLF001", # Private member accessed - "TD002", # Missing author in TODO; try: `# TODO(): ...` or `# TODO @: ...` - "TD003", # Missing issue link on the line following this TODO - "FIX002", # Line contains TODO, consider resolving the issue ] + [per-file-ignores] "tests/*.py" = ["ALL"] ".github/*py" = ["INP001"]