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