-
Notifications
You must be signed in to change notification settings - Fork 18
/
4.2.8.js
34 lines (34 loc) · 1.19 KB
/
4.2.8.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";
/*
4.2.8.セミコロン(;)
原則として和文ではセミコロン(;)を使用しません。
原文でセミコロンが使われている場合も、和文では使用しません。
*/
import { isUserWrittenNode } from "./util/node-util";
import { matchCaptureGroupAll } from "match-index";
import regx from "regx";
import { japaneseRegExp } from "./util/regexp";
const rx = regx("g");
module.exports = function (context) {
let { Syntax, RuleError, report, getSource } = context;
return {
[Syntax.Str](node) {
if (!isUserWrittenNode(node, context)) {
return;
}
const text = getSource(node);
// "和文;" というような半角;は使用しない
const matchRegExp = rx`(?:${japaneseRegExp})(;)`;
matchCaptureGroupAll(text, matchRegExp).forEach((match) => {
const { index } = match;
report(
node,
new RuleError("原則として和文ではセミコロン(;)を使用しません。", {
index: index
})
);
});
}
};
};