Python docstring style checker for PEP 257 compliance
72
A small utility module that runs docstring style checks programmatically with toggleable behaviors suitable for editor or CI integrations.
@generates
from collections.abc import Iterable
from typing import Sequence
def run_docstring_checks(
targets: Sequence[str],
select: Sequence[str] | None = None,
ignore: Sequence[str] | None = None,
honor_inline_suppression: bool = True,
property_decorators: Sequence[str] | None = None,
include_source: bool = False,
) -> list[dict]:
"""
Run docstring validation on the given files or directories and return structured violations.
"""Provides docstring style checking capabilities for Python code.
Install with Tessl CLI
npx tessl i tessl/pypi-pep257evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10