pydoclint

This commit is contained in:
Marc Beninca 2025-01-31 18:26:00 +01:00
parent 2ce78087c4
commit a5d8c67260
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

9
sh/lint/pydoclint.sh Normal file
View file

@ -0,0 +1,9 @@
rwx_pydoclint() {
local path="${1}"
pydoclint \
--allow-init-docstring True \
--quiet \
--skip-checking-short-docstrings False \
--style "sphinx" \
"${path}"
}