Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tox.ini comments #1041

Merged
merged 1 commit into from
Sep 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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