rwx/sh/lint/ruff.sh
2025-01-31 18:42:58 +01:00

13 lines
166 B
Bash

rwx_ruff() {
local path="${1}"
rwx_ruff_format \
"${path}"
}
rwx_ruff_format() {
local path="${1}"
ruff format \
--diff \
--line-length 80 \
"${path}"
}