From 8205f170ff983e5240d32dc17d7fdb526ebe5fe7 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Mon, 11 Mar 2024 07:45:08 +0100 Subject: [mod] pylint all engines without PYLINT_SEARXNG_DISABLE_OPTION Signed-off-by: Markus Heiser --- manage | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'manage') diff --git a/manage b/manage index efb6c265a..9871906d2 100755 --- a/manage +++ b/manage @@ -64,6 +64,11 @@ pylint.FILES() { find . -name searxng.msg } +PYLINT_FILES=() +while IFS= read -r line; do + PYLINT_FILES+=("$line") +done <<< "$(pylint.FILES)" + YAMLLINT_FILES=() while IFS= read -r line; do YAMLLINT_FILES+=("$line") @@ -77,9 +82,6 @@ PYLINT_SEARXNG_DISABLE_OPTION="\ I,C,R,\ W0105,W0212,W0511,W0603,W0613,W0621,W0702,W0703,W1401,\ E1136" -PYLINT_ADDITIONAL_BUILTINS_FOR_ENGINES="traits,supported_languages,language_aliases,logger,categories" -PYLINT_OPTIONS="-m pylint -j 0 --rcfile .pylintrc" - help() { nvm.help cat <