Skip to content

Commit

Permalink
flake8: added ignore section
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Jul 19, 2023
1 parent cf843b1 commit dc059de
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
[flake8]

# Quick reference for some of the most common errors
# E203 whitespace before ':' (Black)
# E402 module level import not at top of file
# E501 line too long (83 > 79 characters)
# F821 undefined name '_'
# W503 line break before binary operator (Black)

ignore =
# whitespace before ':' (Black)
E203,
# line break before binary operator (Black)
W503,

exclude = .git

Expand Down

0 comments on commit dc059de

Please sign in to comment.