Reintroduce ignored Ruff rules D106 and D205
This commit is contained in:
parent
d4e4f4ff63
commit
8188a904af
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user