We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Further to #191 it might be useful to implement a pre-commit hook for markdownlint-cli2 and combine it with a pre-commit.ci.
This would...
*.md
doc/**/*.md
pre-commit
.pre-commit-config.yaml
repos: - repo: https://github.com/pre-commit/pre-commit-hooks rev: v4.6.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: check-yaml - id: check-added-large-files - repo: https://github.com/DavidAnson/markdownlint-cli2 rev: v0.13.0 hooks: - id: markdownlint-cli2 args: [] ci: autofix_prs: true autofix_commit_msg: '[pre-commit.ci] Fixing issues with pre-commit' autoupdate_schedule: weekly autoupdate_commit_msg: '[pre-commit.ci] pre-commit-autoupdate' skip: [] # Optionally list ids of hooks to skip on CI
.markdownlint-cli2.yaml
A basic configuration file is below, a full list of customisable linting rules can be found here
config: # MD013 - line-length line_length: line_length: 80 code_blocks: false tables: false html: allowed_elements: - div globs: - "docs/**/*.md" - "*.md" fix: true
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Further to #191 it might be useful to implement a pre-commit hook for markdownlint-cli2 and combine it with a pre-commit.ci.
This would...
*.md
anddoc/**/*.md
) are correctly linted if contributors haven't usedpre-commit
hooks locally..pre-commit-config.yaml
....markdownlint-cli2.yaml
A basic configuration file is below, a full list of customisable linting rules can be found here
The text was updated successfully, but these errors were encountered: