1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 05:57:01 +00:00
Files
core/script/lint
2018-02-14 22:01:30 -08:00

24 lines
605 B
Bash
Executable File

#!/bin/sh
# Execute lint to spot code mistakes.
cd "$(dirname "$0")/.."
if [ "$1" = "--changed" ]; then
export files="`git diff upstream/dev --name-only | grep -e '\.py$'`"
echo "================================================="
echo "FILES CHANGED (git diff upstream/dev --name-only)"
echo "================================================="
printf "%s\n" $files
echo "================"
echo "LINT with flake8"
echo "================"
flake8 --doctests $files
echo "================"
echo "LINT with pylint"
echo "================"
pylint $files
echo
else
tox -e lint
fi