Skip to content
Snippets Groups Projects
.flake8 525 B
Newer Older
Egor Sobolev's avatar
Egor Sobolev committed
flake8]
max-line-length = 119
exclude =
    # No need to traverse our git directory
    .git,
    # There's no value in checking cache directories
    __pycache__,
    # The conf file is mostly autogenerated, ignore it
    docs/source/conf.py,
    # The old directory contains Flake8 2.0
    old,
    # This contains our built documentation
    build,
    # This contains builds of flake8 that we don't want to check
    dist
    # Emacs backup files
    *~
per-file-ignores =
    # imported but unused
    __init__.py: F401