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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add E231 ignore to flake8 checs, conflicts with black #2108

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ pycodestyle: # Same as scanner.linter value. Other option is flake8
- F401
- F841
- E203 # whitespace before ':'. Opposite convention enforced by black
- E231 # whitespace after ':'. Opposite convention enforced by black
- E501 # line too long. Handled by black
- W503 # line break before binary operator, need for black

Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ ignore =
F401
F841
E203 # E203 - whitespace before ':'. Opposite convention enforced by black
E231 # E231 - whitespace after ':'. Opposite convention enforced by black
E231 # E231: missing whitespace after ',', ';', or ':'; for black
E501 # E501 - line too long. Handled by black, we have longer lines
W503 # W503 - line break before binary operator, need for black
Expand Down