[flake8]
ignore = D1, D401
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,
    # This contains our built documentation
    build,
    .eggs,
    .pkg,
    scared/_version.py,
    .tox,
max-complexity = 12
max-line-length = 160
