markdownlint-rs 0.3.15

A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files
Documentation
# 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.

publish = false

# Main npm package version
[[pre-release-replacements]]
file = "npm/package.json"
search = '"version": "[^"]*"'
replace = '"version": "{{version}}"'

# Python package version
[[pre-release-replacements]]
file = "python/pyproject.toml"
search = 'version = "[^"]*"'
replace = 'version = "{{version}}"'