Get fmt working again
This commit is contained in:
parent
1d1c4a76f5
commit
64e7de4321
1 changed files with 8 additions and 4 deletions
12
tools/fmt.sh
12
tools/fmt.sh
|
@ -9,11 +9,15 @@ DIRS=(projects tools)
|
|||
function brl() {
|
||||
bin="$1"
|
||||
shift
|
||||
bazel run "//${bin}" -- "$@"
|
||||
bazel build "//${bin}"
|
||||
"bazel-bin/${bin}/$(basename ${bin})" "$@"
|
||||
return "$?"
|
||||
}
|
||||
|
||||
brl tools/autoflake --remove-all-unused-imports -ir "${DIRS[@]}"
|
||||
brl tools/isort "${DIRS[@]}"
|
||||
brl tools/unify --quote '"' -ir "${DIRS[@]}"
|
||||
for d in "${DIRS[@]}"; do
|
||||
brl tools/autoflake --remove-all-unused-imports -ir $(realpath "$d")
|
||||
brl tools/isort $(realpath "$d")
|
||||
brl tools/unify --quote '"' -ir $(realpath "$d")
|
||||
done
|
||||
|
||||
brl projects/reqman clean tools/python/requirements.txt
|
||||
|
|
Loading…
Reference in a new issue