Skip to content

Commit

Permalink
Refactor comments in .flake8 (#1470)
Browse files Browse the repository at this point in the history
Fixes #1469
  • Loading branch information
ocelotl authored Nov 29, 2022
1 parent 2179fb9 commit b6f9b62
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
[flake8]
ignore =
E501 # line too long, defer to black
W503 # allow line breaks before binary ops
W504 # allow line breaks after binary ops
E203 # allow whitespace before ':' (https://github.com/psf/black#slices)
# line too long, defer to black
E501

# allow line breaks before binary ops
W503

# allow line breaks after binary ops
W504

# allow whitespace before ':' (https://github.com/psf/black#slices)
E203

exclude =
.bzr
.git
Expand Down

0 comments on commit b6f9b62

Please sign in to comment.