-
Notifications
You must be signed in to change notification settings - Fork 18
/
3.2.js
34 lines (33 loc) · 1.29 KB
/
3.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
// LICENSE : MIT
"use strict";
/*
3.2.カタカナ語間のスペースの有無
中黒または半角スペースを用いてカタカナ語を区切ります。
「2.1.7 カタカナ複合語」を参照してください。
*/
import { isUserWrittenNode } from "./util/node-util";
import { matchCaptureGroupAll } from "match-index";
module.exports = function (context) {
let { Syntax, RuleError, report, getSource } = context;
return {
[Syntax.Str](node) {
if (!isUserWrittenNode(node, context)) {
return;
}
const text = getSource(node);
// カタカナ(カタカナ以外)カタカナ のパターンを取り出す
matchCaptureGroupAll(text, /[ァ-ヶー]([^[ァ-ヶー])[ァ-ヶー]/).forEach((match) => {
// カタカナの間を全角スペースでは区切らない
const { text } = match;
if (text === " ") {
report(
node,
new RuleError("カタカナ語間は中黒(・)または半角スペースを用いてカタカナ語を区切ります", {
index: match.index
})
);
}
});
}
};
};