textlint rule that check unmatched pairs like (
and ]
"
and "
[
and ]
(
and )
{
and }
「
and 」
(
and )
『
and 』
{
and }
[
and ]
〚
and 〛
【
and 】
«
and »
‹
and ›
OK:
これは(秘密)です。
John said "Hello World!".
NG:
これは(秘密)です。
John said "Hello World!'.
Install with npm:
npm install @textlint-rule/textlint-rule-no-unmatched-pair
Via .textlintrc
(Recommended)
{
"rules": {
"@textlint-rule/no-unmatched-pair": true
}
}
Via CLI
textlint --rule @textlint-rule/no-unmatched-pair README.md
See Releases page.
Install devDependencies and Run npm test
:
npm i -d && npm test
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
MIT © azu