aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/ci/travis/lint.sh
blob: fe72ff58967490adb036813ebb5da554b07c2ec5 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
set -ev
which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if available

echo "travis_fold:start:pylint"
python3 -m pylint configure.py
python2 -m pylint configure.py
echo "travis_fold:end:pylint"