1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-17 08:48:05 +00:00
thatmattlove-hyperglass/setup.cfg
2020-01-03 00:44:18 -07:00

20 lines
732 B
INI

[flake8]
max-line-length=88
count=True
show-source=False
statistics=True
exclude=.git, __pycache__,
filename=*.py
per-file-ignores=
# Disable string length warnings so I can actually read the commands
hyperglass/configuration/models/commands.py:E501
# Disable string length warnings so I can actually read the messages
hyperglass/configuration/models/messages.py:E501
# Disable classmethod warning for validator decorators
hyperglass/configuration/models/*.py:N805
ignore=W503
select=B, C, D, E, F, I, II, N, P, PIE, S, W
disable-noqa=False
hang-closing=False
max-complexity=10
# format=${cyan}%(path)s${reset}:${yellow_bold}%(row)d${reset}:${green_bold}%(col)d${reset}: ${red_bold}%(code)s${reset} %(text)s