mirror of
https://github.com/denisidoro/navi
synced 2024-11-13 23:37:10 +00:00
78638c67e4
Fix #107
17 lines
372 B
Bash
Executable file
17 lines
372 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# please refer to https://github.com/denisidoro/dotfiles/blob/master/scripts/code/beautify
|
|
|
|
export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
files_to_lint() {
|
|
find . -iname '*.sh'
|
|
find scripts/*
|
|
echo "${SCRIPT_DIR}/test/run"
|
|
echo "${SCRIPT_DIR}/navi"
|
|
}
|
|
|
|
for f in $(files_to_lint); do
|
|
dot code beautify "$f"
|
|
done
|