add tidy wrapper for tidyall

This commit is contained in:
Trevor Cooper 2023-02-12 20:20:05 -08:00
parent 61d57d4591
commit 1bf3d0eae0
Signed by: tcooper
GPG Key ID: 52364D7BBCEB35B8
3 changed files with 65 additions and 0 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@
.tox/
.coverage
coverage.xml
.tidyall.d/

3
.tidyallrc Normal file
View File

@ -0,0 +1,3 @@
[PerlTidy]
select = **/*.pm
argv = --profile=$ROOT/.perltidyrc

61
tidy Executable file
View File

@ -0,0 +1,61 @@
#!/bin/bash
#
# perltidy rules can be found in ../.perltidyrc
#
usage() {
cat << EOF
Usage:
tidy [-c|--check] [-f|--force] [-o|--only-changed] [-l|--list] [path/to/file]
Options:
-h, -?, --help display this help
-c, --check Only check for style check differences
-f, --force Force check even if tidy version mismatches
-o --only-changed Only tidy files with uncommitted changes in git. This can
speed up execution a lot.
-l --list List files tidy would touch
path/to/file When passing a file as argument, tidy will run perltidy
wether it is added to the git tree or not
perltidy rules can be found in .perltidyrc
EOF
exit
}
set -eo pipefail
dir="$(dirname "$0")"
args=""
selection='--all'
[[ -e "$dir/perlfiles" ]] && selection=$("$dir"/perlfiles)
opts=$(getopt -o hcfol --long help,check,force,only-changed,list -n "$0" -- "$@") || usage
eval set -- "$opts"
while true; do
case "$1" in
-h | --help ) usage; shift ;;
-c | --check ) args+=' --check-only'; shift ;;
-f | --force ) force=true; shift ;;
-o | --only-changed ) selection='--git'; shift ;;
-l | --list ) args+='--list'; shift ;;
-- ) shift; break ;;
* ) break ;;
esac
done
shift $((OPTIND - 1))
filename=${*:-"$selection"}
if ! command -v perltidy > /dev/null 2>&1; then
echo "No perltidy found, install it first!"
exit 1
fi
# go to caller directory
cd "$dir"
# just to make sure we are at the right location
test -e tidy || exit 1
# shellcheck disable=SC2086
tidyall $args $filename