Skip to content

Proselint

Proselint is another linter for prose.

Installation

pip install proselint

Configuration

It can be configured through the ~/.config/proselint/config file, such as:

{
  "checks": {
    "typography.diacritical_marks": false
  }
}
  • The Vim through the ALE plugin.

  • Pre-commit:

    - repo: https://github.com/amperser/proselint/
      rev: 0.10.2
      hooks:
        - id: proselint
          exclude: LICENSE|requirements
          files: \.(md|mdown|markdown)$
    

References