Skip to content

Commit

Permalink
Merge pull request #1041 from MarkZH/tox-ini-fix
Browse files Browse the repository at this point in the history
Fix tox.ini comments
  • Loading branch information
niklasf committed Sep 12, 2023
2 parents 35b961c + 7aaf9d3 commit 8d23b02
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,18 @@ commands =

[flake8]
ignore =
E126 E131 # Allow over-indent and unaligned indent
E241 # Allow indenting array elements
E302 E305 # Allow grouping functions
E741 # Allow "ambiguous" variable names
W504 # Allow binary operators before EOL (end of line)
E704 E301 # Allow "def overloaded(): ..."
E722 # Bare except (with or without reraise)
# Allow over-indent and unaligned indent
E126 E131
# Allow indenting array elements
E241
# Allow grouping functions
E302 E305
# Allow "ambiguous" variable names
E741
# Allow binary operators before EOL (end of line)
W504
# Allow "def overloaded(): ..."
E704 E301
# Bare except (with or without reraise)
E722
max-line-length = 160

0 comments on commit 8d23b02

Please sign in to comment.