-
Notifications
You must be signed in to change notification settings - Fork 18
/
4.2.9.js
38 lines (37 loc) · 1.41 KB
/
4.2.9.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
// LICENSE : MIT
"use strict";
/*
4.2.9.ダッシュ(-)
原則として和文ではダッシュ(-)を使用しません。
和文でダッシュを使用すると、電子文書として処理する際に不都合が生じる場合があります。
Note: ここでのダッシュはU+2012-U+2015とする
全角 —— のように使われてる事が多い
https://ja.wikipedia.org/wiki/%E3%83%80%E3%83%83%E3%82%B7%E3%83%A5_%28%E8%A8%98%E5%8F%B7%29
*/
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})([\u2012-\u2015])`;
matchCaptureGroupAll(text, matchRegExp).forEach((match) => {
const { index } = match;
report(
node,
new RuleError("原則として和文ではダッシュ(―)を使用しません。", {
index
})
);
});
}
};
};