#!/bin/bash -e # cd to libai project root cd "$(dirname "${BASH_SOURCE[0]}")/.." { black --version | grep -E "21\." > /dev/null } || { echo "Linter requires 'black==21.*' !" exit 1 } ISORT_VERSION=$(isort --version-number) if [[ "$ISORT_VERSION" != 5.10.1 ]]; then echo "Linter requires isort==5.10.1 !" exit 1 fi set -v echo "Running autoflake ..." autoflake --remove-unused-variables --in-place --recursive . echo "Running isort ..." isort . --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