Allow longer lines for inlining SSH entries

pull/143/head
Rui Carmo 2019-11-20 19:25:58 +00:00
rodzic 28ec78ad47
commit 173600aa13
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -26,5 +26,6 @@ jobs:
pip install flake8 pip install flake8
# stop the build if there are Python syntax errors or undefined names # stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# --exit-zero treats all errors as warnings. # --exit-zero treats all errors as warnings
flake8 . --count --max-complexity=50 --max-line-length=127 --statistics # allow longer lines for inlining SSH entries
flake8 . --count --max-complexity=50 --max-line-length=255 --statistics