Skip to content

Commit

Permalink
enable E704 in flake8.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm committed Nov 23, 2023
1 parent f3ea136 commit a1393da
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .meta/flake8.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[flake8]

# https://github.com/psf/black
max-line-length = 88

# Ignoring:
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#flake8
max-line-length = 80
select = C,E,F,W,B,B950
# E203 - Whitespace before ':'
extend-ignore = E203
# E501 - Line too long
# E704 - Multiple statements on one line (def)
extend-ignore = E203, E501, E704

0 comments on commit a1393da

Please sign in to comment.