This commit is contained in:
Marc Beninca 2025-01-31 23:37:33 +01:00
parent 9d45c0285c
commit be49eab2f4
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -1,3 +1,16 @@
# lint code
rwx_lint() {
local path="${1}"
local code
set \
"python" \
"shell"
for code in "${@}"; do
rwx_log "${code}"
"rwx_lint_${code}" "${path}"
done
}
# lint python code
rwx_lint_python() {
local path="${1}"