Skip to content

Commit 273e5ed

Browse files
committed
Ignore flake8 error E203 and warning W503
Now ignored: - Whitespace before ':' (E203) - Line break occurred before a binary operator (W503)
1 parent 7294a3c commit 273e5ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ check: lint test
2424
lint: flake8 pylint bandit
2525

2626
flake8:
27-
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
28-
flake8 . --count --exit-zero --max-complexity=10 --statistics
27+
flake8 . --count --select=E9,F63,F7,F82 --ignore=E203,W503 --show-source --statistics
28+
flake8 . --count --ignore=E203,W503 --exit-zero --max-complexity=10 --statistics
2929

3030
pylint:
3131
pylint --disable=W0511 msgcheck

0 commit comments

Comments
 (0)