We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d132c commit f7f45a7Copy full SHA for f7f45a7
Makefile
@@ -25,7 +25,7 @@ pycodestyle:
25
$(PYCODESTYLE) --ignore=E501,E731,W504 $(SOURCES) --config=$(PEP8_CONFIG)
26
27
flake8:
28
- $(FLAKE8) --ignore=E501,E731,W504 $(SOURCES)
+ $(FLAKE8) $(SOURCES)
29
30
clean:
31
rm -rf .pytest_cache/
setup.cfg
@@ -1,5 +1,5 @@
1
[flake8]
2
-ignore = E731,W504
+ignore = E731,W504,E501
3
max-complexity = 48
4
max-line-length = 1900
5
0 commit comments