Skip to content

Commit

Permalink
Configure flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
yreynaud committed May 9, 2023
1 parent c533230 commit 7eafa97
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[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
E203,E402,E501,E731,W503
exclude=
.eggs
docs

0 comments on commit 7eafa97

Please sign in to comment.