script:find . -type f -name '*.py' | xargs pylint -rn --fail-under=9 --ignore='docs/source/conf.py'# Find all python files and check the code with pylint.
script:find . -type f -name '*.py' | xargs pylint -rn --rcfile='plotid/.pylintrc'# Find all python files and check the code with pylint.