13 lines
166 B
Bash
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}"
|
|
}
|