1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

move some flake8 configs to setup.cfg

This commit is contained in:
checktheroads
2019-12-31 18:30:24 -07:00
parent 08c33f678f
commit bd00c0dba8

View File

@ -5,6 +5,13 @@ 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