lint/tasks

This commit is contained in:
Marc Beninca 2025-02-01 00:58:14 +01:00
parent ce62a934d8
commit 029d4ca10a
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -38,3 +38,20 @@ rwx_lint_shell() {
"rwx_${action}" "${path}"
done
}
# lint code tasks
rwx_lint_tasks() {
local path="${1}"
local type
set \
"LATER" \
"TODO" \
"FIXME"
for type in "${@}"; do
rwx_log "${type}"
grep \
--directories "recurse" \
--line-number \
"${type}"
done
}