Skip to main content

A lightweight Python linter for checking Sphinx docstrings.

Project description

sphinxlinter

pypi CI codecov license

A lightweight Python linter that ensures Sphinx docstrings follow the recommended field list style and are consistent with function signatures and implementation.

Motivation

This linter enforces Sphinx docstring rules—like field list style and consistency with function signatures and implementation—not covered by pydocstyle, pydoclint, or ruff.

In general, a typical Sphinx docstring has the following format (ref):

"""[Summary]

:param [ParamType] [ParamName]: [ParamDescription]
:type [ParamName]: [ParamType] 
...
:raises [ErrorType]: [ErrorDescription]
...
:return: [ReturnDescription]
:rtype: [ReturnType]
"""

Requirements

  • Python 3.9+

Quick usage, download the sphinxlinter.py script from following link and run it with Python:

Run on current working directory

python sphinxlinter.py

Pass one or more files or directories. Directories are searched recursively for *.py, ignoring common virtualenv/cache folders.

python sphinxlinter.py path/to/file.py path/to/package_dir

Installation

To install sphinxlinter using pip, run the following command:

pip install sphinx-linter

Usage from command line (CLI) if installed

Run on current working directory

sphinxlinter

Run on specific files or directories

sphinxlinter path/to/file_or_dir ...

Arguments and Options

Arguments

  • [FILES]: List of files or directories to check.

Options

  • --help: Displays the help message and exits.
  • --enable: Violation codes to enable (or ALL, to enable all rules), by default all are enabled.
  • --disable: Violation codes to disable, by default none are disabled. Takes precedence over --enable.
  • --ignore: Directories to exclude from analysis (for example venv, .cache).
  • --statistics: Show counts for every rule with at least one violation.
  • --quiet: Suppresses all output except the statistics summary if --statistics is also set.

Violation reporting

Example output

/path/to/module.py:42: [DOC102] Invalid parameter type syntax ('List[int]')
/path/to/module.py:10: [DOC101] Parameter documented but not in signature ('unused_param')

Format: filename:line: [CODE] message

Common violation codes:

  • DOC0xx: Docstring section issues
  • DOC1xx: Parameter issues
  • DOC2xx: Return issues
  • DOC3xx: Raises issues

How it works (brief)

  • Parses Python AST to find FunctionDef members.
  • Extracts signatures and docstring sections Sphinx field lists.
  • Validates section presence, syntax and consistency with type annotations.

Notes

  • The tool prints findings to stdout and does not modify files.
  • To integrate into CI, run the script and treat any stdout lines as failures in your pipeline logic.

Violation Codes Table

DOC0xx: Docstring section issues

Code Description Justification
DOC001 Unknown docstring section Detects sections not recognized by Sphinx conventions.
DOC002 Malformed section Ensures sections follow correct Sphinx formatting.
DOC003 Missing blank line after docstring Improves readability and separates docstrings from code.
DOC004 Missing blank line between summary and sections Maintains clarity and standard docstring structure.
DOC005 Too many consecutive empty lines Avoids unnecessary whitespace, keeping docstrings clean.
DOC006 Trailing empty lines Ensures docstrings do not contain superfluous blank lines.
DOC007 Misplaced section Ensures docstrings sections are correctly located.
DOC008 One-line docstring should end with a period Enforces a trailing period on one-line docstrings, as recommended by PEP257.
DOC009 Docstring should use """triple double quotes""" Prevents confusion with docstring delimiters

NOTES:

DOC008: This rule differs from Ruff’s similar rule missing-trailing-period, which enforces a trailing period on the first line of both one-line and multi-line docstrings. By contrast, the rule DOC008 only enforces a trailing period on one-line docstrings, following the recommendation in PEP 257.

DOC1xx: Parameter issues

Code Description Justification
DOC101 Parameter documented but not in signature Detects inconsistencies between documentation and function signature.
DOC102 Invalid parameter type syntax Ensures parameter types conform to valid Python type hint syntax.
DOC103 Parameter type already in signature Prevents redundant type declarations.
DOC104 Parameter type mismatch with hint Ensures documented types match actual function hints.
DOC105 Duplicated parameter Avoids repeating the same parameter in the docstring.

DOC2xx: Return issues

Code Description Justification
DOC201 Return documented but function has no return Indicates that it is documented for returns, but has no return statement.
DOC202 Invalid return type syntax Ensures return type conform to valid Python type hint syntax.
DOC203 Return type already in signature Prevents redundant return type hints.
DOC204 Return type mismatch with annotation Validates consistency with function return type hints.
DOC205 Duplicated return section Avoids repeated return sections in then docstring.

DOC3xx: Raises issues

Code Description Justification
DOC302 Invalid exception type syntax Ensures exceptions conform to valid Python syntax.
DOC305 Duplicated exception type Prevents repetition of exceptions in the docstring.

Development

To contribute to the project, you can run the following commands for testing and documentation:

First, ensure you have the latest version of pip:

python -m pip install --upgrade pip

Running Unit Tests

Install the development dependencies and run the tests:

pip install --group=test  # Install test dependencies
pytest tests/ # Run all tests
pytest --cov sphinxlinter # Run tests with coverage

Running Linter

pip install --group=lint  # Install linter dependencies
ruff check . # Run linter

License

This project is licensed under the MIT license.

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

sphinx_linter-0.0.7.tar.gz (16.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sphinx_linter-0.0.7-py3-none-any.whl (12.2 kB view details)

Uploaded Python 3

File details

Details for the file sphinx_linter-0.0.7.tar.gz.

File metadata

  • Download URL: sphinx_linter-0.0.7.tar.gz
  • Upload date:
  • Size: 16.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.23

File hashes

Hashes for sphinx_linter-0.0.7.tar.gz
Algorithm Hash digest
SHA256 08a7ff27df06dd67cc5e4fda39ade89bbb04c26fdfd342aac4232207c9405bd5
MD5 3b28d894de5299ca0efb554d19160177
BLAKE2b-256 26ca23cbecb5dd9e0b82e55dd03e2b85f75e77d60bf68e1ef886673ec27fe8c5

See more details on using hashes here.

File details

Details for the file sphinx_linter-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: sphinx_linter-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 12.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.23

File hashes

Hashes for sphinx_linter-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 c8af49fc76d023e992d27017f871377c9b308e14d0d6f3f3a408d539a5a52176
MD5 a8e0414873ad22c3d8408427648b7d02
BLAKE2b-256 a9a1fa417bb307fc5a29a2762f8b2d4328589e2237a653fb6188e5540a6db334

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page