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