github/linters/setup.cfg: ignore E203 for flake8 to fix compatibility issues with black

For more details, see https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
This commit is contained in:
raiden00pl 2023-04-17 10:25:42 +02:00 committed by Brennan Ashton
parent 0914c20c0d
commit 6b35ff323a

View File

@ -1,5 +1,5 @@
[flake8]
ignore = W503,W605
ignore = W503,W605,E203
max-complexity = 27
max-line-length = 125
show-source = True