@textlint-rule/textlint-rule-no-unmatched-pair
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -37,5 +37,5 @@ "use strict"; | ||
}, { | ||
key: "round bracket()", | ||
start: "\uFF08", | ||
end: "\uFF09" | ||
key: "round bracket()", | ||
start: "(", | ||
end: ")" | ||
}, { | ||
@@ -50,2 +50,6 @@ key: "curly brace{}", | ||
}, { | ||
key: "丸括弧()", | ||
start: "\uFF08", | ||
end: "\uFF09" | ||
}, { | ||
key: "二重かぎ括弧『』", | ||
@@ -55,6 +59,2 @@ start: "\u300E", | ||
}, { | ||
key: "全角丸括弧()", | ||
start: "(", | ||
end: ")" | ||
}, { | ||
key: "波括弧{}", | ||
@@ -61,0 +61,0 @@ start: "\uFF5B", |
{ | ||
"name": "@textlint-rule/textlint-rule-no-unmatched-pair", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "textlint rule that check unmatched pairs like \"(\" and \")\"", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -9,7 +9,7 @@ # @textlint-rule/textlint-rule-no-unmatched-pair [![Build Status](https://travis-ci.org/textlint-rule/textlint-rule-no-unmatched-pair.svg?branch=master)](https://travis-ci.org/textlint-rule/textlint-rule-no-unmatched-pair) | ||
- angled bracket[]: `[` and `]` | ||
- round bracket(): `(` and `)` | ||
- round bracket(): `(` and `)` | ||
- curly brace{}: `{` and `}` | ||
- かぎ括弧「」: `「` and `」` | ||
- 丸括弧(): `(` and `)` | ||
- 二重かぎ括弧『』: `『` and `』` | ||
- 全角丸括弧(): `(` and `)` | ||
- 波括弧{}: `{` and `}` | ||
@@ -16,0 +16,0 @@ - 角括弧[]: `[` and `]` |
@@ -26,5 +26,5 @@ /** | ||
{ | ||
key: "round bracket()", | ||
start: `(`, | ||
end: `)` | ||
key: "round bracket()", | ||
start: `(`, | ||
end: `)` | ||
}, | ||
@@ -42,2 +42,7 @@ { | ||
{ | ||
key: "丸括弧()", | ||
start: `(`, | ||
end: `)` | ||
}, | ||
{ | ||
key: "二重かぎ括弧『』", | ||
@@ -48,7 +53,2 @@ start: `『`, | ||
{ | ||
key: "全角丸括弧()", | ||
start: `(`, | ||
end: `)` | ||
}, | ||
{ | ||
key: "波括弧{}", | ||
@@ -55,0 +55,0 @@ start: `{`, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27424