-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path2.1.5.js
58 lines (56 loc) · 1.85 KB
/
2.1.5.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// LICENSE : MIT
"use strict";
/*
2.1.5.カタカナ
カタカナは「全角」で表記します。
半角カタカナは特殊な用途を除いて、原則として使いません。
Halfwidth Katakana variants(半角片仮名)
\uFF65-\uFF9F とする
http://www.asahi-net.or.jp/~ax2s-kmtn/ref/unicode/uff00.html
*/
import { isUserWrittenNode } from "./util/node-util";
import prh from "textlint-rule-prh";
import path from "path";
import fs from "fs";
import { matchCaptureGroupAll } from "match-index";
import moji from "moji";
/**
* 半角カタカナを全角カタカナに変換
*
* @param {String} str 変換したい文字列
*/
function toZenkaku(string) {
return moji(string).convert("HK", "ZK").toString();
}
function reporter(context) {
let { Syntax, RuleError, fixer, report, getSource } = context;
// 辞書ベースのカタカタ表記のチェックを行う
let dictRule = prh.fixer(context, {
ruleContents: [fs.readFileSync(path.join(__dirname, "..", "dict", "2.1.5.yml"), "utf-8")]
});
let originalStrRule = dictRule[Syntax.Str];
// 半角カタカナの使用をチェックする
dictRule[Syntax.Str] = function (node) {
originalStrRule(node);
if (!isUserWrittenNode(node, context)) {
return;
}
const text = getSource(node);
const matches = matchCaptureGroupAll(text, /([\uFF65-\uFF9F]+)/g);
matches.forEach((match) => {
const { index, text } = match;
report(
node,
new RuleError("カタカナは「全角」で表記します。", {
index: index,
fix: fixer.replaceTextRange([index, index + text.length], toZenkaku(text))
})
);
});
};
return dictRule;
}
module.exports = {
linter: reporter,
fixer: reporter
};