summaryrefslogtreecommitdiff
path: root/.flake8
blob: bc8c500028631a80f59c6b0805ce75a83ef2457b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
[flake8]
max-line-length = 100
# Ignore non PEP 8 compliant rules as suggested by black
extend-ignore =
    E203,  # https://github.com/psf/black/blob/master/docs/the_black_code_style.md#slices
    E501,
    B017
exclude = _vendored
per-file-ignores =
    isort/__init__.py:F401
    isort/stdlibs/__init__.py:F401
    tests/unit/example_crlf_file.py:F401