Skip to content

Commit

Permalink
Update setup.cfg for flake8 v5 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Nov 25, 2022
1 parent b9a796a commit 4e5ae4e
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@ exclude =
cms/utils/__init__.py
cms/utils/compat/forms.py
ignore=
E701, # multiple statements on one line
E722, # do not use bare 'except'
E731, # do not assign a lambda expression, use a def
W503, # line break before binary operator
W605 # invalid escape sequence
E701,
# multiple statements on one line
E722,
# do not use bare 'except'
E731,
# do not assign a lambda expression, use a def
W503,
# line break before binary operator
W605
# invalid escape sequence
max-line-length = 119

[isort]
Expand Down

0 comments on commit 4e5ae4e

Please sign in to comment.