@markuplint/rule-textlint Removed
The @markuplint/rule-textlint package has been completely removed from the Markuplint ecosystem.
Summary
| Change | Who is affected |
|---|---|
@markuplint/rule-textlint package removed | Users 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-htmlfor 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-htmlas a standalone tool. - For Markdown linting with Markuplint: Use
@markuplint/markdown-parserto lint your Markdown files directly.