summaryrefslogtreecommitdiff
path: root/manage
diff options
context:
space:
mode:
Diffstat (limited to 'manage')
-rwxr-xr-xmanage14
1 files changed, 5 insertions, 9 deletions
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 <<EOF
@@ -338,12 +340,6 @@ format.python() {
dump_return $?
}
-
-PYLINT_FILES=()
-while IFS= read -r line; do
- PYLINT_FILES+=("$line")
-done <<< "$(pylint.FILES)"
-
# shellcheck disable=SC2119
main() {