20 lines
304 B
Plaintext
Executable File
20 lines
304 B
Plaintext
Executable File
# Run style checks
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "Checking style with flake8..."
|
|
flake8 --exclude www_static homeassistant
|
|
|
|
FLAKE8_STATUS=$?
|
|
|
|
echo "Checking style with pylint..."
|
|
pylint homeassistant
|
|
PYLINT_STATUS=$?
|
|
|
|
if [ $FLAKE8_STATUS -eq 0 ]
|
|
then
|
|
exit $PYLINT_STATUS
|
|
else
|
|
exit $FLAKE8_STATUS
|
|
fi
|