[flake8]

# Maximum number of characters on a single line.  Ideally, lines should be under 79 characters,
# but we allow some leeway before calling it an error.
max-line-length = 90

ignore = 
    # D401 First line should be in imperative mood
    D401,
    # D202 No blank lines allowed after function docstring
    D202,

    # For doctests:
    # D207 Docstring is under-indented
    D207,
    # D301 Use r""" if any backslashes in a docstring
    D301,
    # F401 'blah blah' imported but unused
    F401,

    # D100 Missing docstring in public module
    D100,