gaphor/.flake8
2021-01-02 22:43:18 -05:00

10 lines
387 B
INI

[flake8]
# E501 (Line too long) is handled by Black (reformatting)
# W503 (Line break occurred before a binary operator) conflicts with Black formatting
ignore = E501, W503
max-line-length = 88
max-complexity = 18
select = B,C,E,F,W,T4,B9
exclude = .venv, dist, __init__.py, conftest.py, sysml.py, uml.py, coremodel.py, diagramitems.py, docs/conf.py, gaphor-script.py
show-source = True