From 8188a904afdbb339bf6dd27afb0e9eb2d56be183 Mon Sep 17 00:00:00 2001 From: Dominik Jain Date: Wed, 10 Jan 2024 15:23:54 +0100 Subject: [PATCH] Reintroduce ignored Ruff rules D106 and D205 --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a2d2c9e..d8b63ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -140,7 +140,9 @@ ignore = [ # Logging statement uses f-string warning "G004", # Unnecessary `elif` after `return` statement - "RET505" + "RET505", + "D106", # undocumented public nested class + "D205", # blank line after summary (prevents summary-only docstrings, which makes no sense) ] unfixable = [ "F841", # unused variable. ruff keeps the call, but mostly we want to get rid of it all