Skip to main content

@markuplint/rule-textlint Removed

The @markuplint/rule-textlint package has been completely removed from the Markuplint ecosystem.

Summary

ChangeWho is affected
@markuplint/rule-textlint package removedUsers who had the textlint rule configured in Markuplint

Why it was removed

  • Markuplint now supports Markdown via @markuplint/markdown-parser.
  • textlint already provides textlint-plugin-html for linting text content inside HTML files.
  • Tight integration between the two tools is no longer necessary. Each tool handles its domain independently.

How to migrate

Step 1: Uninstall the package

npm uninstall @markuplint/rule-textlint

Step 2: Remove the rule from your config

Delete the textlint entry from your Markuplint configuration file:

 {
"rules": {
- "textlint": { ... }
}
}

Step 3: Use alternatives

Alternatives
  • For text linting in HTML: Use textlint with textlint-plugin-html as a standalone tool.
  • For Markdown linting with Markuplint: Use @markuplint/markdown-parser to lint your Markdown files directly.