Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@textlint-rule/textlint-rule-no-unmatched-pair

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@textlint-rule/textlint-rule-no-unmatched-pair - npm Package Compare versions

Comparing version 1.0.2 to 1.0.3

14

lib/parser/PairMaker.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc