We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7294a3c commit 273e5edCopy full SHA for 273e5ed
1 file changed
Makefile
@@ -24,8 +24,8 @@ check: lint test
24
lint: flake8 pylint bandit
25
26
flake8:
27
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
28
- flake8 . --count --exit-zero --max-complexity=10 --statistics
+ flake8 . --count --select=E9,F63,F7,F82 --ignore=E203,W503 --show-source --statistics
+ flake8 . --count --ignore=E203,W503 --exit-zero --max-complexity=10 --statistics
29
30
pylint:
31
pylint --disable=W0511 msgcheck
0 commit comments