Skip to content

Commit

Permalink
Added pylint3 exceptions for PathSimulatorGui and PathSurface due to …
Browse files Browse the repository at this point in the history
…their noisiness.
  • Loading branch information
mlampert committed Jul 10, 2019
1 parent 5659a0e commit 861432c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Mod/Path/utils/path-lint.sh
Expand Up @@ -62,10 +62,14 @@ EXTERNAL_MODULES+=' importlib'
EXTERNAL_MODULES+=' ocl'
EXTERNAL_MODULES+=' pivy'

IGNORE_MODULES+=' post'
IGNORE_MODULES+=' PathSimulatorGui.py'
IGNORE_MODULES+=' PathSurface.py'

#ARGS+=" --errors-only"
ARGS+=" --disable=C,R"
ARGS+=" --ignored-modules=$(echo ${EXTERNAL_MODULES} | tr ' ' ',')"
ARGS+=" --ignore=post"
ARGS+=" --ignore=$(echo ${IGNORE_MODULES} | tr ' ' ',')"
ARGS+=" --jobs=4"

if [ -z "$(which pylint3)" ]; then
Expand Down

0 comments on commit 861432c

Please sign in to comment.