diff --git a/ruff.toml b/ruff.toml index 2c78552..4f533b8 100644 --- a/ruff.toml +++ b/ruff.toml @@ -69,4 +69,8 @@ indent-style = "space" docstring-code-format = true [lint.per-file-ignores] -"test/*" = ["S101", "T201"] +"test/*" = [ + "S101", # Test Asserts + "T201", # Debug prints + "PLR2004", # magic-value-comparison +]