[pydocstyle]
ignore = D100,  # Missing docstring in public module
         D101,  # Missing docstring in public class
         D102,  # Missing docstring in public method
         D103,  # Missing docstring in public function
         D104,  # Missing docstring in public package
         D105,  # Missing docstring in magic method
         D107,  # Missing docstring in __init__
         D202,  # "No blank lines allowed after function docstring" conflicts with
                # the Black code formatter, which insists on inserting blank lines
                # after function docstrings.
         D203,  # "1 blank line required before class docstring" conflicts with
                #  pydocstyle rule D211 "No blank lines allowed before class
                #  docstring". You have to disable one of them.
         D213,  # Multi-line docstring summary should start at the second line.
                # This conflicts with pydocstyle rule D212
                # "Multi-line docstring summary should start at the second line".
                # You have to disable one of them.
