
Security News
High Salaries No Longer Enough to Attract Top Cybersecurity Talent
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
textlint-rule-helper
Advanced tools
This is helper library for creating textlint rule.
npm install textlint-rule-helper
Helper for traversing TxtAST.
Get parents of node.
The parent nodes are returned in order from the closest parent to the outer ones.
node
is not contained in the results.
Params
TxtNode
- the node is start point.Return true if node
is wrapped any one of node types
.
Params
TxtNode
- is target nodeArray.<string>
- are wrapped target nodeisPlainStrNode()
return true if the node is Str node and fill following conditions:
Params
TxtNode
- is target nodeThis function is useful for the common use case.
If you want to lint Str node, but you do not want to lint styled node, this function is useful.
The styled node is Link
, Strong
, BlockQuote
, Header
, and it may be written by other people.
For example, you have added a link to your document, the link's title is written by other people.
Opposite of it, The plain Str node is just under the Paragraph node, and it was written by you.
Examples
Return true
str str str
- list text
Return false
# Header

[link title](https://example.com)
> BlockQuote text
**Strong text**
[linkReference][]
[^footnote text]
use case
You can manager ignoring range in texts.
Add the range of node
to ignoring range list.
Params
TxtNode
- target nodeAdd the range
to ignoring range list
Params
[number, number]
if the children node has the type that is included in ignoredNodeTypes
,
Add range of children node of node
to ignoring range list,
Params
TxtNode
- target nodeArray.<string>
- are node types for ignoringIf the index
is included in ignoring range list, return true.
index
should be absolute position.
Params
number
- index value start with 0If the range
is included in ignoring range list, return true.
range
should includes absolute positions.
Params
[number, number]
If the range
of node
is included in ignoring range list, return true.
Params
TxtNode
- target nodeA rule for textlint.
import { RuleHelper } from "textlint-rule-helper";
import { IgnoreNodeManager } from "textlint-rule-helper";
export default function(context) {
var helper = new RuleHelper(context);
var ignoreNodeManager = new IgnoreNodeManager();
var exports = {};
var reportingErrors = [];
exports[context.Syntax.Paragraph] = function(node) {
// Add `Code` node to ignoring list
ignoreNodeManager.ignoreChildrenByTypes(node, [context.Syntax.Code]);
// do something
reportingErrors.push(node, ruleError);
};
exports[context.Syntax.Str] = function(node) {
// parent nodes is any one Link or Image.
if (helper.isChildNode(node, [context.Syntax.Link, context.Syntax.Image])) {
return;
}
// get Parents
var parents = helper.getParents(node);
};
exports[Syntax.Document + ":exit"] = function(node) {
reportingErrors.forEach(function(node, ruleError) {
// if the error is ignored, don't report
if (ignoreNodeManager.isIgnored(node)) {
return;
}
// report actual
});
};
return exports;
};
wrapReportHandler(context, options, handler): TextlintRuleReportHandler
Params
TextlintRuleContent
- rule context object{{ignoreNodeTypes: TxtNodeType[]}}
- options(report: (node: AnyTxtNode, ruleError: TextlintRuleError) => void) => any
- handler should return a objectwrapReportHandler
is high level API that use RuleHelper
and IgnoreNodeManager
.
It aim to easy to ignore some Node type for preventing unnecessary error report.
Example: ignore BlockQuote
and Code
node.
import { wrapReportHandler } from "textlint-rule-helper";
const reporter = function (context) {
const { Syntax, getSource } = context;
return wrapReportHandler(context, {
ignoreNodeTypes: [Syntax.BlockQuote, Syntax.Code]
},report => { // <= wrap version of context.report
// handler should return a rule handler object
return {
[Syntax.Paragraph](node) {
const text = getSource(node);
const index = text.search("code");
/*
* Following text is matched, but it will not reported.
* ----
* This is `code`.
* > code
* ----
*/
if(index === -1){
return;
}
report(node, new context.RuleError(item.name, {
index
}));
}
}
});
};
export default reporter;
The Mechanism of wrapReportHandler
: `
ignoreNodeTypes
.ignoreNodeTypes
.
wrapReportHandler
create custom report
function that ignore matched nodeYou can see real use-case of this helper library.
# watch
npm run watch
# build
npm run build
# test
npm run test
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
MIT
FAQs
A helper library for textlint rule.
The npm package textlint-rule-helper receives a total of 94,461 weekly downloads. As such, textlint-rule-helper popularity was classified as popular.
We found that textlint-rule-helper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A survey of 500 cybersecurity pros reveals high pay isn't enough—lack of growth and flexibility is driving attrition and risking organizational security.
Product
Socket, the leader in open source security, is now available on Google Cloud Marketplace for simplified procurement and enhanced protection against supply chain attacks.
Security News
Corepack will be phased out from future Node.js releases following a TSC vote.