Skip to content

Commit

Permalink
Ignore flake8 W503
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemonteith committed Jun 14, 2021
1 parent 287c979 commit 0b237ee
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ envlist = py{36,37,38,39}-wagtail{212,213}, lint

[flake8]

# Ignore line length rules. Black should take care of this
ignore=E501
# E501: Ignore line length rules. Black should take care of this.
# W503: Ignore line break before binary operator which is due to change anyway (https://www.flake8rules.com/rules/W503.html)
ignore=E501,W503

exclude=.git,__pycache__,dist,.tox,venv,*/migrations/*

Expand Down

0 comments on commit 0b237ee

Please sign in to comment.