0xdade/sephiroth

View on GitHub
.flake8

Summary

Maintainability
Test Coverage
[flake8]
# W503 - line break before binary operator
# E402 - module level import not at top of file
# E203 - whitespace before ':'

ignore = E402, W503, E203
max-line-length = 160
exclude =
    # Ignore contents of pycache directories
    __pycache__,
    # Ignore dependencies in virtual environments
    venv,
    .venv