Ignore D106: Missing docstring in public nested class

This commit is contained in:
Dominik Jain 2023-09-20 11:24:51 +02:00
parent 16ed5fd2a5
commit 25c6bbd38c

View File

@ -124,7 +124,7 @@ ignore = [
"B008", # do not perform function calls in argument defaults. we do this sometimes
"B011", # assert false. we don't use python -O
"B028", # we don't need explicit stacklevel for warnings
"D100", "D101", "D102", "D104", "D105", "D107", "D203", "D213", "D401", "D402", # docstring stuff
"D100", "D101", "D102", "D104", "D105", "D107", "D203", "D213", "D401", "D402", "D106", # docstring stuff
"DTZ005", # we don't need that
# remaining rules from https://github.com/psf/black/blob/main/.flake8 (except W503)
# this is a simplified version of config, making vscode plugin happy