[flake8]
doctests = 1
ignore =
    # coding magic comment not found
    C101,
    # missing docstring in public package
    D104,
    # missing docstring in magic method
    D105,
    # missing docstring in public nested class (e.g. Meta class)
    D106,
    # missing docstring in __init__ (against Google/NumPy guidelines)
    D107,
    # missing blank line after last section
    D413,
    # black takes care of whitespace before colons (:)
    E203,
    # black takes care of whitespace after commas
    E231,
    # black takes care of line length
    E501,
    # all-lowercase method names
    N802,
    # Change outer quotes to avoid escaping inner quotes
    Q003,
    # black takes care of where to break lines
    W503,
