Hack: add setup.cfg to cover for 'import *'

This commit is contained in:
olliemath 2021-07-28 00:28:17 +01:00
parent a3b822899f
commit 4484517616

19
tests/setup.cfg Normal file
View File

@ -0,0 +1,19 @@
[flake8]
max-line-length = 120
select =
# pycodestyle
E, W
# pyflakes
F
# flake8-bugbear
B, B9
# pydocstyle
D
# isort
I
ignore =
E203 # Whitespace after ':'
W503 # Operator after new line
B950 # We use E501
B008 # Using callable in function defintion, required for FastAPI
F405, F403 # Since * imports cause havok