-
Notifications
You must be signed in to change notification settings - Fork 18
/
4.2.4.js
45 lines (44 loc) · 1.74 KB
/
4.2.4.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
// LICENSE : MIT
"use strict";
/*
4.2.4.中黒(・)
カタカナ複合語を区切る場合、同格の語句を並列する場合に使用します。
同一の文書で、カタカナ複合語の区切りに中黒を使い、同格の語句の並列にも中黒を使用するのは、お勧めしません。
読み手の理解を妨げる場合があるからです。「2.1.7 カタカナ複合語」を参照してください
「・」と「・」
*/
import { isUserWrittenNode } from "./util/node-util";
import { matchCaptureGroupAll } from "match-index";
import regx from "regx";
import { japaneseRegExp } from "./util/regexp";
const rx = regx("g");
function reporter(context) {
let { Syntax, RuleError, report, fixer, getSource } = context;
return {
[Syntax.Str](node) {
if (!isUserWrittenNode(node, context)) {
return;
}
const text = getSource(node);
// 和文で半角の・は利用しない
const matchHanNakaguro = rx`(?:${japaneseRegExp}|[a-zA-Z])(・)(?:${japaneseRegExp}|[a-zA-Z])`;
matchCaptureGroupAll(text, matchHanNakaguro).forEach((match) => {
const { index } = match;
report(
node,
new RuleError(
"カタカナ複合語を区切る場合または同格の語句を並列する場合には全角の中黒(・)を使用します。",
{
index: index,
fix: fixer.replaceTextRange([index, index + 1], "・")
}
)
);
});
}
};
}
module.exports = {
linter: reporter,
fixer: reporter
};