Reintroduce ignored Ruff rules D106 and D205

This commit is contained in:
Dominik Jain 2024-01-10 15:23:54 +01:00
parent d4e4f4ff63
commit 8188a904af

View File

@ -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