A pre-commit hook for rumdl, a fast Markdown linter and fixer written in Rust.
To use rumdl with pre-commit, add the following to your .pre-commit-config.yaml
:
repos:
- repo: https://github.com/rvben/rumdl-pre-commit
rev: v0.0.128 # Use the latest release tag
hooks:
- id: rumdl
# To only check (default):
# args: []
# To automatically fix issues:
# args: [--fix]
- By default, the hook will only check for issues.
- To automatically fix issues, add
args: [--fix]
to the hook configuration.
When you run pre-commit install
or pre-commit run
, pre-commit will automatically install rumdl
in an isolated Python environment using pip. You do not need to install rumdl manually.
MIT (see LICENSE)