mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-02-22 21:25:43 -05:00
25 lines
599 B
Bash
Executable file
25 lines
599 B
Bash
Executable file
#!/bin/bash
|
|
|
|
yapf_args=('--recursive' '--parallel')
|
|
autoflake_args=('--recursive' '--remove-unused-variables' '--remove-all-unused-imports' '--expand-star-imports' '--remove-duplicate-keys')
|
|
|
|
format() {
|
|
files=("$@")
|
|
if [[ -z "${files[*]}" ]]; then
|
|
files=(".")
|
|
fi
|
|
|
|
yapf "${yapf_args[@]}" "${files[@]}"
|
|
autoflake "${autoflake_args[@]}" "${files[@]}"
|
|
}
|
|
|
|
|
|
if [[ "$1" == "--check" ]]; then
|
|
yapf_args+=('--diff')
|
|
shift
|
|
[[ "$(format "$@" | tee /dev/stderr | wc -c)" == "0" ]]
|
|
else
|
|
yapf_args+=('--in-place')
|
|
autoflake_args+=('--in-place')
|
|
format "$@"
|
|
fi
|