From 173600aa13f17f77e8079b653f95410620f452a5 Mon Sep 17 00:00:00 2001 From: Rui Carmo Date: Wed, 20 Nov 2019 19:25:58 +0000 Subject: [PATCH] Allow longer lines for inlining SSH entries --- .github/workflows/pylint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 310a5b4..d9f3da4 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -26,5 +26,6 @@ jobs: pip install flake8 # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics - # --exit-zero treats all errors as warnings. - flake8 . --count --max-complexity=50 --max-line-length=127 --statistics + # --exit-zero treats all errors as warnings + # allow longer lines for inlining SSH entries + flake8 . --count --max-complexity=50 --max-line-length=255 --statistics