10 lines
172 B
Bash
10 lines
172 B
Bash
|
rwx_pydoclint() {
|
||
|
local path="${1}"
|
||
|
pydoclint \
|
||
|
--allow-init-docstring True \
|
||
|
--quiet \
|
||
|
--skip-checking-short-docstrings False \
|
||
|
--style "sphinx" \
|
||
|
"${path}"
|
||
|
}
|