rwx_ruff() {
local path="${1}"
local action
set \
"check" \
"format"
for action; do
"rwx_ruff_${action}" "${path}"
done
}
rwx_ruff_check() {
ruff check \
--ignore "D203,D213" \
--isolated \
--select "ALL" \
"${path}"
rwx_ruff_format() {
ruff format \
--diff \
--line-length "80" \