rwx/sh/lint/python.sh
2025-01-31 18:31:24 +01:00

10 lines
161 B
Bash

# lint python code
rwx_python_lint() {
local path="${1}"
# check pydoc
rwx_log "pydoc"
pydoclint "${path}"
# check typing
rwx_log "mypy"
mypy "${path}"
}