mirror of https://github.com/FoundationVision/GLEE
43 lines
912 B
Bash
43 lines
912 B
Bash
#!/bin/bash -e
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
|
|
# cd to detectron2 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" != 4.3* ]]; then
|
|
echo "Linter requires isort==4.3.21 !"
|
|
exit 1
|
|
fi
|
|
|
|
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 mypy ..."
|
|
# Pytorch does not have enough type annotations
|
|
# mypy detectron2/solver detectron2/structures detectron2/config
|
|
|
|
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
|