forked from iplab-wave/all-in-one-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
morpheme-match-dict.js
54 lines (54 loc) · 1.31 KB
/
morpheme-match-dict.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
49
50
51
52
53
54
module.exports = [
{
message:
"格助詞の「で」の使用はやめてください.参考: https://scrapbox.io/iplab-tsukuba/%E3%81%A7",
tokens: [
{
surface_form: "で",
pos: "助詞",
pos_detail_1: "格助詞",
pos_detail_2: "一般",
pos_detail_3: "*",
conjugated_type: "*",
conjugated_form: "*",
basic_form: "で",
reading: "デ",
pronunciation: "デ",
},
],
},
{
message: "助動詞の「だ」は.使わないでください.修正例: 「である」",
tokens: [
{
surface_form: "だ",
pos: "助動詞",
pos_detail_1: "*",
pos_detail_2: "*",
pos_detail_3: "*",
conjugated_type: "特殊・ダ",
conjugated_form: "基本形",
basic_form: "だ",
reading: "ダ",
pronunciation: "ダ",
},
],
},
{
message: "並立助詞の「や」は.使わないでください.",
tokens: [
{
surface_form: "や",
pos: "助詞",
pos_detail_1: "並立助詞",
pos_detail_2: "*",
pos_detail_3: "*",
conjugated_type: "*",
conjugated_form: "*",
basic_form: "や",
reading: "ヤ",
pronunciation: "ヤ",
},
],
},
];