diff --git a/tests/setup.cfg b/tests/setup.cfg new file mode 100644 index 0000000..a806d48 --- /dev/null +++ b/tests/setup.cfg @@ -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