# Taken almost directly from https://github.com/ambv/black/blob/master/.flake8
[flake8]
ignore = B950, C901, D100, D104, E203, E266, E501, W503
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9,D
enable-extensions = flake8-docstrings
per-file-ignores =
    benchmarks/**:D101,D102,D103
    tests/**:D101,D102,D103
docstring-convention = numpy
