2024-07-04 11:10:11 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
## SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
##
|
|
|
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
set -eu
|
|
|
|
|
2024-08-06 12:15:24 -04:00
|
|
|
command -v git >/dev/null ||
|
|
|
|
{ printf '%s\n' "Missing program: git" >&2; exit 1; }
|
2024-07-10 08:36:05 -04:00
|
|
|
repo_toplevel="$(git rev-parse --show-toplevel)"
|
|
|
|
test -d "${repo_toplevel}" || exit 1
|
2024-07-19 09:29:17 -04:00
|
|
|
cd "${repo_toplevel}"
|
2024-07-10 08:36:05 -04:00
|
|
|
unset repo_toplevel
|
2024-07-04 11:10:11 -04:00
|
|
|
./scripts/requires-program.sh mdl
|
|
|
|
|
2024-07-04 12:09:38 -04:00
|
|
|
extra_files_rules="~MD002,~MD012,~MD022,~MD032,~MD041"
|
2024-07-06 16:25:54 -04:00
|
|
|
find_tool="$(./scripts/best-program.sh fd fdfind find)"
|
2024-07-04 11:10:11 -04:00
|
|
|
|
|
|
|
if test -n "${1-}"; then
|
|
|
|
files=""
|
2024-07-04 12:09:38 -04:00
|
|
|
extra_files=""
|
2024-07-10 08:36:05 -04:00
|
|
|
for f in "${@}"; do
|
|
|
|
test -f "${f}" || continue
|
2024-07-04 11:10:11 -04:00
|
|
|
extension="${f##*.}"
|
2024-07-10 08:36:05 -04:00
|
|
|
case "${extension}" in
|
2024-07-04 12:09:38 -04:00
|
|
|
md)
|
|
|
|
case "${f}" in
|
2024-07-10 08:36:05 -04:00
|
|
|
.github/*) extra_files="${extra_files} ${f}"; continue;;
|
|
|
|
*) ;;
|
2024-07-04 12:09:38 -04:00
|
|
|
esac
|
2024-07-10 08:36:05 -04:00
|
|
|
files="${files} ${f}";;
|
2024-07-04 12:09:38 -04:00
|
|
|
*)
|
|
|
|
continue
|
|
|
|
;;
|
2024-07-04 11:10:11 -04:00
|
|
|
esac
|
|
|
|
done
|
2024-07-04 12:09:38 -04:00
|
|
|
if test -n "${extra_files}"; then
|
2024-07-10 08:36:05 -04:00
|
|
|
mdl --rules "${extra_files_rules}" ${extra_files}
|
2024-07-04 12:09:38 -04:00
|
|
|
fi
|
2024-07-10 08:36:05 -04:00
|
|
|
test -n "${files}" || exit 0
|
2024-07-04 11:10:11 -04:00
|
|
|
exec mdl ${files}
|
|
|
|
fi
|
|
|
|
|
|
|
|
case "${find_tool}" in
|
2024-07-04 12:09:38 -04:00
|
|
|
fd|fdfind)
|
2024-07-09 11:42:07 -04:00
|
|
|
files="$(${find_tool} . -H -E .github -t f -e md)"
|
|
|
|
extra_files="$(${find_tool} . -H -t f -e md .github)"
|
2024-07-04 12:09:38 -04:00
|
|
|
;;
|
|
|
|
find)
|
|
|
|
files="$(find . -not -path './.github/*' -type f -name "*.md")"
|
|
|
|
extra_files="$(find .github -type f -name "*.md")"
|
|
|
|
;;
|
2024-08-06 12:15:24 -04:00
|
|
|
*) printf '%s\n' "Unsupported find tool" >&2; exit 1;;
|
2024-07-04 11:10:11 -04:00
|
|
|
esac
|
|
|
|
|
2024-07-04 12:09:38 -04:00
|
|
|
if test -n "${extra_files}"; then
|
2024-07-10 08:36:05 -04:00
|
|
|
mdl --rules "${extra_files_rules}" ${extra_files}
|
2024-07-04 12:09:38 -04:00
|
|
|
fi
|
2024-07-04 11:10:11 -04:00
|
|
|
exec mdl ${files}
|