9 lines
172 B
1
rwx_pydoclint() {
2
local path="${1}"
3
pydoclint \
4
--allow-init-docstring True \
5
--quiet \
6
--skip-checking-short-docstrings False \
7
--style "sphinx" \
8
"${path}"
9
}
10