18 lines
254 B
Text
Executable file
18 lines
254 B
Text
Executable file
# Run style checks
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "Checking style with flake8..."
|
|
flake8 --exclude www_static homeassistant
|
|
|
|
STATUS=$?
|
|
|
|
echo "Checking style with pylint..."
|
|
pylint homeassistant
|
|
|
|
if [ $STATUS -eq 0 ]
|
|
then
|
|
exit $?
|
|
else
|
|
exit $STATUS
|
|
fi
|