[pydocstyle]
convention = pep257
add-ignore =
    D107, # Missing docstring in __init__
    D200, # One-line docstring should fit on one line with quotes
    D205, # 1 blank line required between summary line and description
    D400, # First line should end with a period
    D401, # First line should be in imperative mood
    D402, # First line should not be the function’s signature
    D403, # First word of the first line should be properly capitalized
    D412, # No blank lines allowed between a section header and its content
