tessl install tessl/pypi-pep257@0.7.0Python docstring style checker for PEP 257 compliance
Agent Success
Agent success rate when using this tile
72%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.04x
Baseline
Agent success rate without this tile
69%
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.