From 9f3b8556b11e0f12c78c570d33bf87cee2dbbc1f Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Mon, 24 Mar 2025 21:42:39 +0100 Subject: [PATCH] chore: update ruff rules --- .ruff.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.ruff.toml b/.ruff.toml index 0e81fbb..1978a69 100644 --- a/.ruff.toml +++ b/.ruff.toml @@ -22,6 +22,11 @@ ignore = [ "TC003", # Move standard library import {} into a type-checking block "TRY003", # Avoid specifying long messages outside the exception class + + # Relative to todos + "TD002", # Missing author in todo + "TD003", # Missing issue link in todo + "FIX002", # Resolve the todo ] [lint.flake8-pytest-style]