Style checker for Launchpad doctests.
Project description
lp-lint-doctest is a style checker for Python doctests stored in text files (as opposed to doctests stored in docstrings), optimized for use in Launchpad development. It applies the following checks:
Comments should be in the narrative part of the doctest (i.e. in unindented text) rather than in Python examples.
Narrative text lines are limited to 78 characters.
Source lines in examples (beginning with >>> or ...) are limited to 70 characters.
Expected output lines in examples are limited to 74 characters.
Source and expected output lines should be indented by exactly four spaces.
There should be no trailing whitespace.
reStructuredText-style headings should be used, not MoinMoin-style.
A # noqa comment in any source line in an example suppresses the comment, line length, indentation, and trailing whitespace checks for all lines in that example.
In addition, lp-lint-doctest runs pyflakes on the accumulated source code of each doctest file.
This project was split out from Curtis Hovey’s pocket-lint project. Since that was written, many other excellent linters have arisen for most of the other source types supported by pocket-lint, but there seems to be no other viable replacement for its doctest checks.
lp-lint-doctest supports pre-commit. To use it, add the following to the repos section of your .pre-commit-config.yaml file:
- repo: https://git.launchpad.net/lp-lint-doctest rev: '' # pick a git tag to point to hooks: - id: lp-lint-doctest
If you need to add a custom doctest option flag, then add args: [--allow-option-flag, MY_CUSTOM_FLAG_NAME].
NEWS for lp-lint-doctest
0.3 (2021-07-27)
Allow # noqa comments to suppress comment checks as well.
0.2 (2021-07-25)
Add --allow-option-flag command-line option to register custom doctest option flags.
Allow comments in source lines in examples if they contain doctest directives.
Allow suppressing checks for an example by adding a # noqa comment to any of its source lines.
0.1 (2021-07-24)
Initial release, split out from pocket-lint.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lp_lint_doctest-0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdfdbfa89348dd442f1bf55ee72de2ab69173e8e34154716ac035e2b55979a1e |
|
MD5 | 456ff92fb12b9ea046f1c2c5a585dc6d |
|
BLAKE2b-256 | a4ca7414e552462b098cf9be2948da0011c071b86a41316e2ab382835f779d45 |