-
Notifications
You must be signed in to change notification settings - Fork 18
/
2.1.8.js
40 lines (40 loc) · 1.33 KB
/
2.1.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
35
36
37
38
39
40
// LICENSE : MIT
"use strict";
/*
2.1.8.算用数字
算用数字は「半角」で表記します。
用途によっては全角を許容します。
ただし、表記をできるだけ統一するため、特別な理由がない限り半角での表記を原則とします。
*/
import { isUserWrittenNode } from "./util/node-util";
import moji from "moji";
import { matchCaptureGroupAll } from "match-index";
function toHankaku(string) {
return moji(string).convert("ZE", "HE").toString();
}
function reporter(context) {
let { Syntax, RuleError, report, fixer, getSource } = context;
return {
[Syntax.Str](node) {
if (!isUserWrittenNode(node, context)) {
return;
}
const text = getSource(node);
const matchRegExp = /([0-9]+)/;
matchCaptureGroupAll(text, matchRegExp).forEach((match) => {
const { index, text } = match;
report(
node,
new RuleError("算用数字は「半角」で表記します。", {
index: index,
fix: fixer.replaceTextRange([index, index + text.length], toHankaku(text))
})
);
});
}
};
}
module.exports = {
linter: reporter,
fixer: reporter
};