Skip to content

Commit

Permalink
Fix tox.ini comments
Browse files Browse the repository at this point in the history
Latest version of flake8 no longer allows inline comments in config file.
  • Loading branch information
MarkZH committed Sep 10, 2023
1 parent 35b961c commit 7aaf9d3
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 7aaf9d3

Please sign in to comment.