Skip to content

Commit a77ee23

Browse files
committed
Breaking Change: 衝突が発生しやすいルールはデフォルトオフへ
辞書ベースのルールをデフォルトではオフとする。 - 2.1.5.カタカナ - 2.1.6.カタカナの長音 - 2.2.1.ひらがなと漢字の使い分け close #22
1 parent 443ea16 commit a77ee23

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/index.js

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,15 @@ export default {
5454
"1.2.1.句点(。)と読点(、)": true,
5555
"1.2.2.ピリオド(.)とカンマ(,)": true,
5656
"2.1.2.漢字": true,
57-
"2.1.5.カタカナ": true,
58-
"2.1.6.カタカナの長音": true,
57+
// 辞書ベース
58+
"2.1.5.カタカナ": false,
59+
// 辞書ベース
60+
"2.1.6.カタカナの長音": false,
5961
"2.1.8.算用数字": true,
6062
"2.1.9.アルファベット": true,
6163
"2.1.10.算用数字の位取りの表記": true,
62-
"2.2.1.ひらがなと漢字の使い分け": true,
64+
// 辞書ベース
65+
"2.2.1.ひらがなと漢字の使い分け": false,
6366
"2.2.2.算用数字と漢数字の使い分け": true,
6467
"2.2.3.一部の助数詞の表記": true,
6568
"3.1.1.全角文字と半角文字の間": true,
@@ -72,9 +75,9 @@ export default {
7275
"4.2.2.疑問符(?)": true,
7376
"4.2.4.中黒(・)": true,
7477
"4.2.5.波線(〜)": true,
75-
"4.2.6.ハイフン(-)": true,// default off?
76-
"4.2.7.コロン(:)": true,// default off?
77-
"4.2.8.セミコロン(;)": true, // default off?
78+
"4.2.6.ハイフン(-)": true,
79+
"4.2.7.コロン(:)": true,
80+
"4.2.8.セミコロン(;)": true,
7881
"4.2.9.ダッシュ(-)": true,
7982
"4.3.1.丸かっこ()": true,
8083
"4.3.2.大かっこ[]": true,

0 commit comments

Comments
 (0)