-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path4.3.1.js
57 lines (56 loc) · 1.9 KB
/
4.3.1.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
// LICENSE : MIT
"use strict";
/*
4.3.1.丸かっこ()
直前の内容を補足して説明する場合や言い換える場合に使用します。
全角のかっこを使用します
*/
import { isUserWrittenNode } from "./util/node-util";
import { matchCaptureGroupAll } from "match-index";
import regx from "regx";
import { japaneseRegExp } from "./util/regexp";
const rx = regx("g");
const replaceSymbol = (symbol) => {
var newSymbol = {
"(": "(",
")": ")"
}[symbol];
if (!newSymbol) {
throw new Error("fail to replace symbol");
}
return newSymbol;
};
function reporter(context) {
let { Syntax, RuleError, report, fixer, getSource } = context;
return {
[Syntax.Str](node) {
if (!isUserWrittenNode(node, context)) {
return;
}
// 半角のかっこ()は使用しないで全角のかっこを使用する
const text = getSource(node);
const matchRegExps = [
rx`([\(\)])(?:.*${japaneseRegExp}.*)([\(\)])`,
rx`(?:${japaneseRegExp})([\(\)])(?:${japaneseRegExp})`,
rx`^(\()(?:${japaneseRegExp})`,
rx`(?:${japaneseRegExp})(\))$`
];
matchRegExps.forEach((matchRegExp) => {
matchCaptureGroupAll(text, matchRegExp).forEach((match) => {
const { index } = match;
report(
node,
new RuleError("半角のかっこ()が使用されています。全角のかっこ()を使用してください。", {
index: index,
fix: fixer.replaceTextRange([index, index + 1], replaceSymbol(match.text))
})
);
});
});
}
};
}
module.exports = {
linter: reporter,
fixer: reporter
};