From a3e56ad801343697cdc2dda139193f240497973e Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 16 Mar 2025 14:00:32 +0100 Subject: Finish ruff cleanup Related to #376 --- blog/pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'blog/pyproject.toml') diff --git a/blog/pyproject.toml b/blog/pyproject.toml index b1f9c314..6f4e9a35 100644 --- a/blog/pyproject.toml +++ b/blog/pyproject.toml @@ -36,10 +36,10 @@ build-backend = "hatchling.build" [tool.ruff.lint] select = ["ALL"] ignore = [ - "E741", # Ambiguous variable name (single letter variable) - "ANN", # Missing type annotations - "D1", # Missing docstrings - "B011", "PT015", "S101", # I am wrong in liking asserts, but I do - "COM812", # Trailing comma missing, incompatible with ruff format - "D400", "D415", "D212", "D205" # I like doctests without docstrings + "E741", # Ambiguous variable name (single letter variable) + "ANN", # Missing type annotations + "D1", # Missing docstrings + "B011", "PT015", "S101", # I am wrong in liking asserts, but I do + "COM812", # Trailing comma missing, incompatible with ruff format + "D400", "D415", "D212", "D205", "D402", # I like doctests without docstrings ] -- cgit v1.2.3