diff --git a/.config/ruff/pyproject.toml b/.config/ruff/pyproject.toml index 363b196..827b54b 100644 --- a/.config/ruff/pyproject.toml +++ b/.config/ruff/pyproject.toml @@ -42,6 +42,7 @@ select = [ ignore = [ "ANN101", # No type hint for "self" - not necessary and makes noisy code + "D203", # Blank line required before class docstring - conflicts with ruff's own formatter "D211", # No line before class, incompatible with D203 - one line before class "D212", # Summary on first line; incompatible with D213 - summary on second line "D400" # Summary should end with period - duplicates D415 - summary ends with punctuation