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 command-line utility that runs docstring linting on Python source files while allowing decorator- and property-aware behavior.
--skip-decorators <regex>, docstring checks ignore any function or method decorated with a name matching the pattern; other lint failures still appear with file and line references. @test--property-decorators <names> ensures methods tagged with those decorators are treated as properties so summary-line mood checks match property expectations and do not enforce imperative tone. @test--allow-self-init, a __init__(self) without extra parameters is exempt from missing-docstring violations; without the flag the same file reports the missing docstring. @test@generates
lint-docstrings entry point accepting one or more file or directory paths.--skip-decorators, --property-decorators (comma-separated), --allow-self-init, and --explain.0 on a clean run, 1 when lint violations are found, and 2 on invalid options.--explain is present include rule explanations in the output.def main(argv: list[str] | None = None) -> int:
...Docstring linting engine used by the CLI.