Skip to content

Commit eab57e9

Browse files
committed
Add W503 to ignored flake8 rules
W504 and W503 conflict with each other (and are both disabled by default) -- by setting ignore you've re-enabled them. extend-ignore does not have this problem as it augments the default set of ignored codes Signed-off-by: hwassman <[email protected]>
1 parent d54ed7f commit eab57e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Test
2323
command: |
2424
. venv/bin/activate
25-
flake8 --max-line-length=999 --ignore=E731,E741,E712,E722 --exclude=venv* --statistics
25+
flake8 --max-line-length=999 --ignore=E731,E741,E712,E722,W503 --exclude=venv* --statistics
2626
nose2
2727
- setup_remote_docker:
2828
version: 19.03.13

0 commit comments

Comments
 (0)