Skip to content

Commit a26b48f

Browse files
committed
Ignore flake8 E504 warnings.
The following warnings will get ignored: W504 line break after binary operator Putting the line break before binary operators would lead into W503 (https://lintlyci.github.io/Flake8Rules/rules/W504.html).
1 parent cbbe76e commit a26b48f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ lint:
3535
@flake8 \
3636
--jobs=auto \
3737
--max-line-length=100 \
38-
--ignore=E402 \
38+
--ignore=E402,W504 \
3939
regression_tests tests *.py | \
4040
grep -v "tests/.*:[0-9]*:[0-9]*: E501 line too long .*" | \
4141
grep -v "regression_tests/parsers/c_parser/__init__.py:[0-9]*:[0-9]*: F401 'parse' imported but unused" | \

0 commit comments

Comments
 (0)