markdownlint-rs 0.3.21

A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# release.toml — cargo-release configuration
#
# When `cargo release` runs, it bumps the version in Cargo.toml and then applies
# the replacements below to keep all package manifests in sync. No version-setting
# commands are needed in CI — by the time a tag is pushed, every manifest already
# contains the correct version.

pre-release-commit-message = "Release {{version}}"
publish = false
tag-message = "Release {{version}}"
# designed to run _after_ pre-release-replacements
pre-release-hook = ["./release.sh"]

# pre-commit hook revision in READMEs
[[pre-release-replacements]]
file = "README.md"
search = 'rev: v[0-9]+\.[0-9]+\.[0-9]+\n'
replace = "rev: v{{version}}\n"