-
Notifications
You must be signed in to change notification settings - Fork 18
/
3.1.2.js
48 lines (47 loc) · 1.76 KB
/
3.1.2.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
// LICENSE : MIT
"use strict";
import { isUserWrittenNode } from "./util/node-util";
import { matchAll } from "match-index";
import regx from "regx";
import { japaneseRegExp } from "./util/regexp";
const rx = regx("g");
/*
3.1.2. 全角文字どうし
原則として、全角文字どうしの間にスペースを入れません。ただしカタカナ複合語の場合を除きます。
「2.1.7 カタカナ複合語」を参照してください。
*/
function reporter(context) {
let { Syntax, RuleError, report, fixer, getSource } = context;
return {
[Syntax.Str](node) {
if (!isUserWrittenNode(node, context)) {
return;
}
const text = getSource(node);
// 全角同士の間は半角スペースを入れない
const matchReg = rx`${japaneseRegExp}( )${japaneseRegExp}`;
const katakakana = /[ァ-ヶ]( )[ァ-ヶ]/;
matchAll(text, matchReg).forEach((match) => {
const { input, captureGroups } = match;
// ただしカタカナ複合語の場合を除きます。
if (katakakana.test(input)) {
return;
}
captureGroups.forEach((captureGroup) => {
const index = captureGroup.index;
report(
node,
new RuleError("原則として、全角文字どうしの間にスペースを入れません。", {
index: index,
fix: fixer.replaceTextRange([index, index + 1], "")
})
);
});
});
}
};
}
module.exports = {
linter: reporter,
fixer: reporter
};