aikenml/data_mining
0
1#!/bin/bash -e2# Copyright (c) Facebook, Inc. and its affiliates.3 4{5 black --version | grep -E "23\." > /dev/null6} || {7 echo "Linter requires 'black==23.*' !"8 exit 19}10 11ISORT_VERSION=$(isort --version-number)12if [[ "$ISORT_VERSION" != 5.12* ]]; then13 echo "Linter requires isort==5.12.0 !"14 exit 115fi16 17echo "Running isort ..."18isort . --atomic19 20echo "Running black ..."21black -l 100 .22 23echo "Running flake8 ..."24if [ -x "$(command -v flake8)" ]; then25 flake8 .26else27 python3 -m flake8 .28fi29 30echo "Running mypy..."31 32mypy --exclude 'setup.py|notebooks' .33 