Skip to content

Commit

Permalink
flake8/pre-commit: ignore invalid "whitespace before ':'"
Browse files Browse the repository at this point in the history
  • Loading branch information
e3krisztian committed Jun 9, 2022
1 parent fb597bc commit 7c39dcc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[flake8]
# We start with a strict setting, this is ranked as A in radon
max-complexity = 8
ignore = E501,W503
ignore =
E501 # line too long
W503 # line break before binary operator
E203 # whitespace before ':' - known black/flake8 incompatibility
exclude =
__init__.py

0 comments on commit 7c39dcc

Please sign in to comment.