Skip to content

Commit

Permalink
Increased flake8 line-length config slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
bmispelon committed Apr 19, 2024
1 parent 638f6c2 commit 2dd4660
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.cfg
@@ -1,7 +1,10 @@
[flake8]
exclude = djangodocs,.tox,*/migrations/*
ignore = F405,W504,W503
max-line-length = 88
# black enforces an 88 char line length but in some edge cases it's unable to
# do so, and in that case it creates an unresolvable E501 error. The solution
# is to set a slightly higher limit for flake8.
max-line-length = 90
per-file-ignores =
docs/tests.py: E501

Expand Down

0 comments on commit 2dd4660

Please sign in to comment.