|
#!/bin/bash -e |
|
|
|
|
|
|
|
|
|
vergte() { |
|
[ "$2" = "$(echo -e "$1\\n$2" | sort -V | head -n1)" ] |
|
} |
|
|
|
{ |
|
black --version | grep -E "(19.3b0.*6733274)|(19.3b0\\+8)" > /dev/null |
|
} || { |
|
echo "Linter requires 'black @ git+https://github.com/psf/black@673327449f86fce558adde153bb6cbe54bfebad2' !" |
|
exit 1 |
|
} |
|
|
|
ISORT_TARGET_VERSION="4.3.21" |
|
ISORT_VERSION=$(isort -v | grep VERSION | awk '{print $2}') |
|
vergte "$ISORT_VERSION" "$ISORT_TARGET_VERSION" || { |
|
echo "Linter requires isort>=${ISORT_TARGET_VERSION} !" |
|
exit 1 |
|
} |
|
|
|
set -v |
|
|
|
echo "Running isort ..." |
|
isort -y -sp . --atomic |
|
|
|
echo "Running black ..." |
|
black -l 100 . |
|
|
|
echo "Running flake8 ..." |
|
if [ -x "$(command -v flake8-3)" ]; then |
|
flake8-3 . |
|
else |
|
python3 -m flake8 . |
|
fi |
|
|
|
|
|
|
|
|
|
|
|
echo "Running clang-format ..." |
|
find . -regex ".*\.\(cpp\|c\|cc\|cu\|cxx\|h\|hh\|hpp\|hxx\|tcc\|mm\|m\)" -print0 | xargs -0 clang-format -i |
|
|
|
command -v arc > /dev/null && arc lint |
|
|