From 23efe695ae048db32497652ec9a5700cbbbf0a4a Mon Sep 17 00:00:00 2001 From: Markus Lampert Date: Sun, 23 Jun 2019 16:50:14 -0700 Subject: [PATCH] Enabled all warnings in addition to errors for path linter --- src/Mod/Path/utils/path-lint.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Mod/Path/utils/path-lint.sh b/src/Mod/Path/utils/path-lint.sh index c803fd4ada..92586efc07 100755 --- a/src/Mod/Path/utils/path-lint.sh +++ b/src/Mod/Path/utils/path-lint.sh @@ -61,8 +61,10 @@ EXTERNAL_MODULES+=' area' EXTERNAL_MODULES+=' importlib' EXTERNAL_MODULES+=' pivy' -ARGS+=" --errors-only" +#ARGS+=" --errors-only" +ARGS+=" --disable=C,R" ARGS+=" --ignored-modules=$(echo ${EXTERNAL_MODULES} | tr ' ' ',')" +ARGS+=" --ignore=post" ARGS+=" --jobs=4" if [ -z "$(which pylint)" ]; then @@ -72,3 +74,4 @@ fi #pylint ${ARGS} PathScripts/ PathTests/ pylint ${ARGS} PathScripts/ +