Skip to content
This repository has been archived by the owner on Aug 7, 2023. It is now read-only.

AtomLinter/linter-pydocstyle

Repository files navigation

linter-pydocstyle

A Linter plugin to lint Python docstrings according to the semantics and conventions spec'd in PEP 257.

In use side-by-side with the flake8 linter:

Screenshot of pydocstyle feedback

Installation

  1. Install Linter.

  2. Install python package pydocstyle, run:

    pip install pydocstyle
  3. Install package, run:

    apm install linter-pydocstyle

Configuration

Setting Values
Error codes to ignore Example: D100,D101 - all available error codes
Path to executable pydocstyle cmd Default: pydocstyle

If using python version management, like pyenv, the path configuration will need to be set. For pyenv, the path for pydocstyle is discoverable by executing:

pyenv which pydocstyle