rwx/sh/lint/python.sh

11 lines
161 B
Bash
Raw Normal View History

2025-01-31 18:31:24 +01:00
# lint python code
rwx_python_lint() {
local path="${1}"
# check pydoc
rwx_log "pydoc"
pydoclint "${path}"
# check typing
rwx_log "mypy"
mypy "${path}"
}