Skip to content

Commit

Permalink
Bump flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerkclark committed Nov 5, 2023
1 parent 37c6010 commit 0aa9b74
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ repos:
hooks:
- id: black
- repo: https://github.com/PyCQA/flake8.git
rev: 4.0.1
rev: 6.1.0
hooks:
- id: flake8
17 changes: 11 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,17 @@ setup_requires =
setuptools_scm

[flake8]
ignore =
E203 # whitespace before ':' - doesn't work well with black
E402 # module level import not at top of file
E501 # line too long - let black worry about that
E731 # do not assign a lambda expression, use a def
W503 # line break before binary operator
ignore =
# whitespace before ':' - doesn't work well with black
E203
# module level import not at top of file
E402
# line too long - let black worry about that
E501
# do not assign a lambda expression, use a def
E731
# line break before binary operator
W503
exclude =
.eggs
doc
Expand Down

0 comments on commit 0aa9b74

Please sign in to comment.