├── .travis.yml ├── LICENSE ├── README.md ├── _config.yml ├── dict └── prh.yml ├── package.json ├── src ├── dictionary.js └── textlint-rule-ja-official-documents.js └── test ├── mocha.opts ├── no-confusing-adjust-and-apply-test.js └── no-variable-test.js /.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | language: node_js 3 | node_js: 4 | - '7.4.0' 5 | before_script: 6 | - npm install 7 | script: 8 | - npm run lint -s 9 | 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2019 yabu 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # textlint-rule-ja-official-documents 2 | 3 | 公用文校正のためのtextlintルール 4 | 5 | - 例 6 | - 「わたし」→「私」 7 | - 「ご案内」→「御案内」 8 | 9 | 詳細は、辞書の定義を参照 10 | 11 | - [dict/prh.yml](dict/prh.yml) 12 | - [src/dictionary.js](src/dictionary.js) 13 | 14 | ## インストール 15 | [node.js](https://nodejs.org/ja/download/) の事前インストール。その後、 16 | 17 | npm install --save-dev textlint 18 | npm install --save-dev textlint-rule-prh 19 | npm install @textlint-ja/textlint-rule-morpheme-match 20 | npm install --save-dev yabuuchi-hiroaki/textlint-rule-ja-official-documents 21 | 22 | - `.textlintrc`に以下を書きこみ 23 | 24 | ```json 25 | { 26 | "rules": { 27 | "@textlint-ja/morpheme-match": { 28 | "dictionaryPathList": ["node_modules/textlint-rule-ja-official-documents/src/dictionary.js"] 29 | }, 30 | "prh": { 31 | "rulePaths": [ 32 | "node_modules/textlint-rule-ja-official-documents/dict/prh.yml" 33 | ] 34 | } 35 | } 36 | } 37 | 38 | ``` 39 | 40 | ## 使い方 41 | 42 | npx textlint [Markdownファイルへのpath] 43 | 44 | ## 参考 45 | - [公用文における漢字使用等について(平成22年内閣訓令第1号)](http://www.bunka.go.jp/kokugo_nihongo/sisaku/joho/joho/kijun/sanko/koyobun/pdf/kunrei.pdf) 46 | - [法令における漢字使用等について(平成22年内閣法制局通知)](https://www.clb.go.jp/info/other/houreiniokerukanji.pdf) 47 | - [公用文作成の要領(昭和27年内閣閣甲第16号)](http://www.bunka.go.jp/kokugo_nihongo/sisaku/joho/joho/kijun/sanko/koyobun/pdf/yoryo_ver02.pdf) 48 | - 文部省用字用語例 49 | - 常用漢字表 50 | - [よくある日本語の誤用をチェックするtextlintルール(Github)](https://github.com/textlint-ja/textlint-rule-ja-no-abusage) 51 | 52 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-slate -------------------------------------------------------------------------------- /dict/prh.yml: -------------------------------------------------------------------------------- 1 | version: 1 2 | rules: 3 | 4 | - expected: 至って 5 | patterns: いたって 6 | prh: 副詞は漢字。 7 | - expected: 概して 8 | patterns: がいして 9 | prh: 副詞は漢字。 10 | - expected: 辛うじて 11 | patterns: かろうじて 12 | prh: 副詞は漢字。 13 | - expected: かなり 14 | patterns: 可成り 15 | - expected: ふと 16 | patterns: 不図 17 | - expected: やはり 18 | patterns: 矢張り 19 | - expected: よほど 20 | patterns: 余程 21 | - expected: 惜しげ 22 | patterns: 惜し気 23 | prh: 接尾語は仮名。 24 | - expected: 偉ぶる 25 | patterns: 偉振る 26 | prh: 接尾語は仮名。 27 | - expected: かつ 28 | patterns: 且つ 29 | prh: 接続詞は仮名。 30 | - expected: ついては 31 | patterns: 就いては 32 | prh: 接続詞は仮名。 33 | - expected: ところが、 34 | patterns: 所が、 35 | prh: 接続詞は仮名。 36 | - expected: ところで、 37 | patterns: 所で、 38 | prh: 接続詞は仮名。 39 | - expected: だけ 40 | patterns: 已 41 | prh: 助詞は仮名。 42 | - expected: のとおり 43 | patterns: の通り 44 | prh: (仮名)次のとおり。(漢字)一通り。 45 | - expected: かもしれ 46 | patterns: かも知れ 47 | - expected: てあげ 48 | patterns: て上げ 49 | prh: ただし、「~(物)を上げる」は漢字。 50 | - expected: ていく 51 | patterns: て行く 52 | prh: ただし、「~(場所)へ行く」は漢字。 53 | - expected: ていか 54 | patterns: て行か 55 | prh: ただし、「~(場所)へ行く」は漢字。 56 | - expected: ていき 57 | patterns: て行き 58 | prh: ただし、「~(場所)へ行く」は漢字。 59 | - expected: ていけ 60 | patterns: て行け 61 | prh: ただし、「~(場所)へ行く」は漢字。 62 | - expected: ていこ 63 | patterns: て行こ 64 | prh: ただし、「~(場所)へ行く」は漢字。 65 | - expected: ていただく 66 | patterns: て頂く 67 | prh: ただし、「~(物)を頂く」は漢字。 68 | - expected: ていただか 69 | patterns: て頂か 70 | prh: ただし、「~(物)を頂く」は漢字。 71 | - expected: ていただい 72 | patterns: て頂い 73 | prh: ただし、「~(物)を頂く」は漢字。 74 | - expected: ていただき 75 | patterns: て頂き 76 | prh: ただし、「~(物)を頂く」は漢字。 77 | - expected: ていただけ 78 | patterns: て頂け 79 | prh: ただし、「~(物)を頂く」は漢字。 80 | - expected: ていただこ 81 | patterns: て頂こ 82 | prh: ただし、「~(物)を頂く」は漢字。 83 | - expected: ておく 84 | patterns: て置く 85 | prh: ただし、「~(物)を置く」は漢字。 86 | - expected: ておか 87 | patterns: て置か 88 | prh: ただし、「~(物)を置く」は漢字。 89 | - expected: ておき 90 | patterns: て置き 91 | prh: ただし、「~(物)を置く」は漢字。 92 | - expected: ておけ 93 | patterns: て置け 94 | prh: ただし、「~(物)を置く」は漢字。 95 | - expected: ておこ 96 | patterns: て置こ 97 | prh: ただし、「~(物)を置く」は漢字。 98 | - expected: てくださ 99 | patterns: て下さ 100 | prh: ただし、「~(物)を下さい」は漢字。 101 | - expected: てく 102 | patterns: て来 103 | prh: ただし、「~(人)が来る」は漢字。 104 | - expected: てしま 105 | patterns: て仕舞 106 | - expected: てしまう 107 | patterns: て終う 108 | - expected: てみる 109 | patterns: て見る 110 | prh: ただし、「~(物)を(見/診)る」は漢字。 111 | - expected: てよい 112 | patterns: て良い 113 | prh: ただし、「~(物)が良い」は漢字。 114 | - expected: にすぎない 115 | patterns: に過ぎない 116 | prh: ただし、「~が過ぎる」等は漢字。 117 | - expected: にすぎず 118 | patterns: に過ぎず 119 | prh: ただし、「~が過ぎる」等は漢字。 120 | - expected: について 121 | patterns: に就いて 122 | - expected: について 123 | patterns: に就て 124 | - expected: 預り金 125 | patterns: 預かり金 126 | - expected: 魚釣用具 127 | patterns: 魚釣り用具 128 | - expected: 受皿 129 | patterns: 受け皿 130 | - expected: 受持ち 131 | patterns: 受け持ち 132 | - expected: 打合せ 133 | patterns: 打ち合せ 134 | - expected: 売払い 135 | patterns: 売り払い 136 | - expected: 置場 137 | patterns: 置き場 138 | - expected: 贈物 139 | patterns: 贈り物 140 | - expected: 帯留 141 | patterns: 帯留め 142 | - expected: 折詰 143 | patterns: 折詰め 144 | - expected: 買物 145 | patterns: 買い物 146 | - expected: 缶切 147 | patterns: 缶切り 148 | - expected: 期限付 149 | patterns: 期限付き 150 | - expected: 切土 151 | patterns: 切り土 152 | - expected: 靴下留 153 | patterns: 靴下留め 154 | - expected: くみ取便所 155 | patterns: くみ取り便所 156 | - expected: 繰戻し 157 | patterns: 繰り戻し 158 | - expected: 砂糖漬 159 | patterns: 砂糖漬け 160 | - expected: 下請 161 | patterns: 下請け 162 | - expected: 条件付 163 | patterns: 条件付き 164 | - expected: 捨場 165 | patterns: 捨て場 166 | - expected: 栓抜 167 | patterns: 栓抜き 168 | - expected: 備置き 169 | patterns: 備え置き 170 | - expected: 染物 171 | patterns: 染め物 172 | - expected: 田植 173 | patterns: 田植え 174 | - expected: 立札 175 | patterns: 立て札 176 | - expected: 月掛 177 | patterns: 月掛け 178 | - expected: 月払 179 | patterns: 月払い 180 | - expected: 積卸し 181 | patterns: 積み卸し 182 | - expected: 釣鐘 183 | patterns: 釣り鐘 184 | - expected: 釣銭 185 | patterns: 釣り銭 186 | - expected: 釣針 187 | patterns: 釣り針 188 | - expected: 手続 189 | patterns: 手続き 190 | - expected: 取卸し 191 | patterns: 取り卸し 192 | - expected: 飲物 193 | patterns: 飲み物 194 | - expected: 払渡済み 195 | patterns: 払い渡済み 196 | - expected: 日雇 197 | patterns: 日雇い 198 | - expected: 歩留り 199 | patterns: 歩留まり 200 | - expected: 船着場 201 | patterns: 船着き場 202 | - expected: 不払 203 | patterns: 不払い 204 | - expected: 賦払 205 | patterns: 賦払い 206 | - expected: 前払 207 | patterns: 前払い 208 | - expected: 未払 209 | patterns: 未払い 210 | - expected: 申合せ事項 211 | patterns: 申し合せ事項 212 | - expected: 持家 213 | patterns: 持ち家 214 | - expected: 持分 215 | patterns: 持ち分 216 | - expected: 元請 217 | patterns: 元請け 218 | - expected: 催物 219 | patterns: 催し物 220 | - expected: 盛土 221 | patterns: 盛り土 222 | - expected: 雇主 223 | patterns: 雇い主 224 | - expected: 挨拶 225 | patterns: あいさつ 226 | prh: 「挨」「拶」は常用漢字(H22年~) 227 | - expected: 宛先 228 | patterns: あて先 229 | prh: 「宛」は常用漢字(H22年~) 230 | - expected: 咽喉 231 | patterns: いんこう 232 | prh: 「咽」「喉」は常用漢字(H22年~) 233 | - expected: 隠蔽 234 | patterns: 隠ぺい 235 | prh: 「蔽」は常用漢字(H22年~) 236 | - expected: 覚醒 237 | patterns: 覚せい 238 | prh: 「醒」は常用漢字(H22年~) 239 | - expected: 玩具 240 | patterns: がん具 241 | prh: 「玩」は常用漢字(H22年~) 242 | - expected: 毀損 243 | patterns: き損 244 | prh: 「毀」は常用漢字(H22年~) 245 | - expected: 亀裂 246 | patterns: きれつ 247 | prh: 「亀」は常用漢字(H22年~) 248 | - expected: 亀裂 249 | patterns: き裂 250 | prh: 「亀」は常用漢字(H22年~) 251 | - expected: 禁錮 252 | patterns: 禁こ 253 | prh: 「錮」は常用漢字(H22年~) 254 | - expected: 拳銃 255 | patterns: けん銃 256 | prh: 「拳」は常用漢字(H22年~) 257 | - expected: 勾留 258 | patterns: こう留 259 | prh: 「勾」は常用漢字(H22年~) 260 | - expected: 失踪 261 | patterns: 失そう 262 | prh: 「踪」は常用漢字(H22年~) 263 | - expected: 焼酎 264 | patterns: 焼ちゅう 265 | prh: 「酎」は常用漢字(H22年~) 266 | - expected: 処方箋 267 | patterns: 処方せん 268 | prh: 「箋」は常用漢字(H22年~) 269 | - expected: 腎臓 270 | patterns: じん臓 271 | prh: 「腎」は常用漢字(H22年~) 272 | - expected: 進捗 273 | patterns: 進ちょく 274 | prh: 「捗」は常用漢字(H22年~) 275 | - expected: 整頓 276 | patterns: 整とん 277 | prh: 「頓」は常用漢字(H22年~) 278 | - expected: 脊柱 279 | patterns: せき柱 280 | prh: 「脊」は常用漢字(H22年~) 281 | - expected: 遡及 282 | patterns: そ及 283 | prh: 「遡」は常用漢字(H22年~) 284 | - expected: 堆積 285 | patterns: たい積 286 | prh: 「堆」は常用漢字(H22年~) 287 | - expected: 貼付 288 | patterns: ちょう付 289 | prh: 「貼」は常用漢字(H22年~) 290 | - expected: 賭博 291 | patterns: とばく 292 | prh: 「賭」は常用漢字(H22年~) 293 | - expected: 剥奪 294 | patterns: はく奪 295 | prh: 「剥」は常用漢字(H22年~) 296 | - expected: 破綻 297 | patterns: 破たん 298 | prh: 「綻」は常用漢字(H22年~) 299 | - expected: 汎用 300 | patterns: はん用 301 | prh: 「汎」は常用漢字(H22年~) 302 | - expected: 氾濫 303 | patterns: はん濫 304 | prh: 「氾」は常用漢字(H22年~) 305 | - expected: 膝 306 | patterns: ひざ 307 | prh: 「膝」は常用漢字(H22年~) 308 | - expected: 肘 309 | patterns: ひじ 310 | prh: 「肘」は常用漢字(H22年~) 311 | - expected: 払拭 312 | patterns: 払しょく 313 | prh: 「拭」は常用漢字(H22年~) 314 | - expected: 閉塞 315 | patterns: 閉そく 316 | prh: 「塞」は常用漢字(H22年~) 317 | - expected: 捕捉 318 | patterns: 捕そく 319 | prh: 「捉」は常用漢字(H22年~) 320 | - expected: 補填 321 | patterns: 補てん 322 | prh: 「填」は常用漢字(H22年~) 323 | - expected: 哺乳類 324 | patterns: ほ乳類 325 | prh: 「哺」は常用漢字(H22年~) 326 | - expected: 蜜蜂 327 | patterns: 蜜蜂 328 | prh: 「蜜」「蜂」は常用漢字(H22年~) 329 | - expected: 明瞭 330 | patterns: 明りょう 331 | prh: 「瞭」は常用漢字(H22年~) 332 | - expected: 湧出 333 | patterns: ゆう出 334 | prh: 「湧」は常用漢字(H22年~) 335 | - expected: 拉致 336 | patterns: ら致 337 | prh: 「拉」は常用漢字(H22年~) 338 | - expected: 賄賂 339 | patterns: 賄ろ 340 | prh: 「賂」は常用漢字(H22年~) 341 | - expected: 鑑み 342 | patterns: かんがみ 343 | prh: 常用漢字表の読み(H22年~) 344 | - expected: 遡 345 | patterns: さかのぼ 346 | prh: 「遡」は常用漢字(H22年~) 347 | - expected: 壊滅 348 | patterns: 潰滅 349 | - expected: 壊乱 350 | patterns: 潰乱 351 | - expected: 決壊 352 | patterns: 決潰 353 | - expected: 広範 354 | patterns: 広汎 355 | - expected: 全壊 356 | patterns: 全潰 357 | - expected: 倒壊 358 | patterns: 倒潰 359 | - expected: 破棄 360 | patterns: 破毀 361 | - expected: 崩壊 362 | patterns: 崩潰 363 | - expected: 理屈 364 | patterns: 理窟 365 | - expected: ただし書 366 | patterns: 但書 367 | - expected: 暗渠(きょ) 368 | patterns: 暗渠 369 | - expected: 按(あん)分 370 | patterns: 按分 371 | - expected: 蛾(が) 372 | patterns: 蛾 373 | - expected: 瑕疵(かし) 374 | patterns: 瑕疵 375 | - expected: 管渠(きょ) 376 | patterns: 管渠 377 | - expected: 涵(かん)養 378 | patterns: 涵養 379 | - expected: 強姦(かん) 380 | patterns: 強姦 381 | - expected: 砒(ひ)素 382 | patterns: 砒素 383 | - expected: 埠(ふ)頭 384 | patterns: 埠頭 385 | - expected: かかわら 386 | patterns: 拘わら 387 | - expected: たばこ 388 | patterns: 煙草 389 | - expected: もって 390 | patterns: 以て 391 | - expected: わいせつ 392 | patterns: 猥褻 393 | - expected: あっせん 394 | patterns: あっ旋 395 | - expected: れんが 396 | patterns: れん瓦 397 | - expected: 〔あいくち〕 398 | patterns: 匕首 399 | - expected: ×× 400 | patterns: 委棄 401 | - expected: 〔慰謝料〕 402 | patterns: 慰藉料 403 | - expected: 〔違反〕 404 | patterns: 違背 405 | - expected: 〔園地〕 406 | patterns: 苑地 407 | - expected: ×× 408 | patterns: 汚穢 409 | - expected: ×× 410 | patterns: 解止 411 | - expected: ×× 412 | patterns: 戒示 413 | - expected: ×× 414 | patterns: 灰燼 415 | - expected: ×× 416 | patterns: 開披 417 | - expected: ×× 418 | patterns: 牙保 419 | - expected: ×× 420 | patterns: 勧解 421 | - expected: ×× 422 | patterns: 監守 423 | - expected: 〔保管〕 424 | patterns: 管守 425 | - expected: ×× 426 | patterns: 陥穽 427 | - expected: 〔関与〕 428 | patterns: 干与 429 | - expected: 〔関与〕 430 | patterns: 干預 431 | - expected: ×× 432 | patterns: 義捐 433 | - expected: 〔ボイラー〕 434 | patterns: 汽鑵 435 | - expected: ×× 436 | patterns: 技監 437 | - expected: ×× 438 | patterns: 覊束 439 | - expected: 〔喫水〕 440 | patterns: 吃水 441 | - expected: ×× 442 | patterns: 欺瞞 443 | - expected: ×× 444 | patterns: 欺罔 445 | - expected: ×× 446 | patterns: 狭隘 447 | - expected: 〔供応〕 448 | patterns: 饗応 449 | - expected: ×× 450 | patterns: 驚愕 451 | - expected: 〔魚倉〕 452 | patterns: 魚艙 453 | - expected: 〔規律〕 454 | patterns: 紀律 455 | - expected: 〔空気タンク〕 456 | patterns: 空気槽 457 | - expected: ×× 458 | patterns: 具有 459 | - expected: 〔係船〕 460 | patterns: ?船 461 | - expected: 〔係属〕 462 | patterns: ?属 463 | - expected: 〔経理〕 464 | patterns: 計理 465 | - expected: 〔係留〕 466 | patterns: ?留 467 | - expected: ×× 468 | patterns: 懈怠 469 | - expected: 〔関連〕 470 | patterns: 牽連 471 | - expected: ×× 472 | patterns: 溝渠 473 | - expected: 〔交差点〕 474 | patterns: 交叉点 475 | - expected: 〔交代〕 476 | patterns: 更代 477 | - expected: 〔広報〕 478 | patterns: 弘報 479 | - expected: 〔かるた類〕 480 | patterns: 骨牌 481 | - expected: ×× 482 | patterns: 戸扉 483 | - expected: ×× 484 | patterns: 誤謬 485 | - expected: 〔偽り〕 486 | patterns: 詐偽 487 | - expected: ×× 488 | patterns: 鑿井 489 | - expected: ×× 490 | patterns: 鎖鑰 491 | - expected: 〔散水管〕 492 | patterns: 撒水管 493 | - expected: 〔趣旨〕 494 | patterns: 旨趣 495 | - expected: ×× 496 | patterns: 枝条 497 | - expected: 〔首謀者〕 498 | patterns: 首魁 499 | - expected: 〔アルコール〕 500 | patterns: 酒精 501 | - expected: ×× 502 | patterns: 鬚髯 503 | - expected: 〔純化〕 504 | patterns: 醇化 505 | - expected: 〔完成〕 506 | patterns: 竣功 507 | - expected: ×× 508 | patterns: 傷痍 509 | - expected: ×× 510 | patterns: 焼燬 511 | - expected: 〔消却〕 512 | patterns: 銷却 513 | - expected: 〔状況〕 514 | patterns: 情況 515 | - expected: 〔マストトップ〕 516 | patterns: 檣頭 517 | - expected: ×× 518 | patterns: 証標 519 | - expected: 〔証拠〕 520 | patterns: 証憑 521 | - expected: 〔証拠〕 522 | patterns: 憑拠 523 | - expected: ×× 524 | patterns: 牆壁 525 | - expected: ×× 526 | patterns: 塵芥 527 | - expected: 〔侵食〕 528 | patterns: 侵蝕 529 | - expected: ×× 530 | patterns: 成規 531 | - expected: 〔盗用 532 | patterns: 窃用 533 | - expected: 〔ドック〕 534 | patterns: 船渠 535 | - expected: 〔洗浄〕 536 | patterns: 洗滌 537 | - expected: ×× 538 | patterns: 僣窃 539 | - expected: 〔総括〕 540 | patterns: 総轄 541 | - expected: ×× 542 | patterns: 齟齬 543 | - expected: 〔疎明〕 544 | patterns: 疏明 545 | - expected: ×× 546 | patterns: 稠密 547 | - expected: 〔通訳人〕 548 | patterns: 通事 549 | - expected: 〔定係港〕 550 | patterns: 定?港 551 | - expected: 〔提示〕 552 | patterns: 呈示 553 | - expected: 〔定年〕 554 | patterns: 停年 555 | - expected: 〔押印〕 556 | patterns: 捺印 557 | - expected: 〔売春〕 558 | patterns: 売淫 559 | - expected: 〔繁殖〕 560 | patterns: 蕃殖 561 | - expected: ×× 562 | patterns: 版図 563 | - expected: ×× 564 | patterns: 誹毀 565 | - expected: ×× 566 | patterns: 彼此 567 | - expected: 〔表示〕 568 | patterns: 標示 569 | - expected: ×× 570 | patterns: 紊乱 571 | - expected: ×× 572 | patterns: 編綴 573 | - expected: ×× 574 | patterns: 房室 575 | - expected: 膨張 576 | patterns: 膨脹 577 | prh: 「脹」は常用外 578 | - expected: ×× 579 | patterns: 法例 580 | - expected: 〔補助〕 581 | patterns: 輔助 582 | - expected: 〔満了する〕 583 | patterns: 満限に達する 584 | - expected: ×× 585 | patterns: 宥恕 586 | - expected: ×× 587 | patterns: 輸贏 588 | - expected: ×× 589 | patterns: 踰越 590 | - expected: 〔油タンク〕 591 | patterns: 油槽 592 | - expected: 〔落盤〕 593 | patterns: 落磐 594 | - expected: ×× 595 | patterns: 鄰佑 596 | - expected: ×× 597 | patterns: 狼狽 598 | - expected: 〔和解〕 599 | patterns: 和諧 600 | - expected: 合図 601 | patterns: 合い図 602 | - expected: 合服 603 | patterns: 合い服 604 | - expected: 合間 605 | patterns: 合い間 606 | - expected: 預入金 607 | patterns: 預入れ金 608 | - expected: 編上靴 609 | patterns: 編上げ靴 610 | - expected: 植木 611 | patterns: 植え木 612 | - expected: 進退伺 613 | patterns: 進退伺い 614 | - expected: 浮袋 615 | patterns: 浮き袋 616 | - expected: 浮世絵 617 | patterns: 浮き世絵 618 | - expected: 受入額 619 | patterns: 受入れ額 620 | - expected: 受入先 621 | patterns: 受入れ先 622 | - expected: 受入年月日 623 | patterns: 受入れ年月日 624 | - expected: 請負 625 | patterns: 請負い 626 | - expected: 受付 627 | patterns: 受付け 628 | - expected: 受付 629 | patterns: 受け付け 630 | - expected: 受付係 631 | patterns: 受付け係 632 | - expected: 受取 633 | patterns: 受取り 634 | - expected: 受取人 635 | patterns: 受取り人 636 | - expected: 受払金 637 | patterns: 受払い金 638 | - expected: 打切補償 639 | patterns: 打切り補償 640 | - expected: 埋立区域 641 | patterns: 埋立て区域 642 | - expected: 埋立事業 643 | patterns: 埋立て事業 644 | - expected: 埋立地 645 | patterns: 埋立て地 646 | - expected: 裏書 647 | patterns: 裏書き 648 | - expected: 売上高 649 | patterns: 売上げ高 650 | - expected: 売掛金 651 | patterns: 売掛け金 652 | - expected: 売出発行 653 | patterns: 売出し発行 654 | - expected: 売手 655 | patterns: 売り手 656 | - expected: 売主 657 | patterns: 売り主 658 | - expected: 売値 659 | patterns: 売り値 660 | - expected: 売渡価格 661 | patterns: 売渡し価格 662 | - expected: 売渡先 663 | patterns: 売渡し先 664 | - expected: 絵巻物 665 | patterns: 絵巻き物 666 | - expected: 襟巻 667 | patterns: 襟巻き 668 | - expected: 沖合 669 | patterns: 沖合い 670 | - expected: 置物 671 | patterns: 置き物 672 | - expected: 奥書 673 | patterns: 奥書き 674 | - expected: 奥付 675 | patterns: 奥付け 676 | - expected: 押売 677 | patterns: 押売り 678 | - expected: 押出機 679 | patterns: 押出し機 680 | - expected: 覚書 681 | patterns: 覚え書 682 | - expected: 博多織 683 | patterns: 博多織り 684 | - expected: 折返線 685 | patterns: 折返し線 686 | - expected: 織元 687 | patterns: 織り元 688 | - expected: 織物 689 | patterns: 織り物 690 | - expected: 卸売 691 | patterns: 卸売り 692 | - expected: 買上品 693 | patterns: 買上げ品 694 | - expected: 買受人 695 | patterns: 買受け人 696 | - expected: 買掛金 697 | patterns: 買掛け金 698 | - expected: 外貨建債権 699 | patterns: 外貨建て債権 700 | - expected: 概算払 701 | patterns: 概算払い 702 | - expected: 買手 703 | patterns: 買い手 704 | - expected: 買主 705 | patterns: 買い主 706 | - expected: 買値 707 | patterns: 買い値 708 | - expected: 書付 709 | patterns: 書付け 710 | - expected: 書留 711 | patterns: 書留め 712 | - expected: 過誤払 713 | patterns: 過誤払い 714 | - expected: 貸方 715 | patterns: 貸し方 716 | - expected: 貸越金 717 | patterns: 貸越し金 718 | - expected: 貸室 719 | patterns: 貸し室 720 | - expected: 貸席 721 | patterns: 貸し席 722 | - expected: 貸倒引当金 723 | patterns: 貸倒引当金 724 | - expected: 貸出金 725 | patterns: 貸出し金 726 | - expected: 貸出票 727 | patterns: 貸出し票 728 | - expected: 貸付金 729 | patterns: 貸付け金 730 | - expected: 貸主 731 | patterns: 貸し主 732 | - expected: 貸船 733 | patterns: 貸し船 734 | - expected: 貸本 735 | patterns: 貸し本 736 | - expected: 貸間 737 | patterns: 貸し間 738 | - expected: 貸家 739 | patterns: 貸し家 740 | - expected: 箇条書 741 | patterns: 箇条書き 742 | - expected: 貸渡業 743 | patterns: 貸渡し業 744 | - expected: 肩書 745 | patterns: 肩書き 746 | - expected: 借入金 747 | patterns: 借入れ金 748 | - expected: 借受人 749 | patterns: 借受け人 750 | - expected: 借方 751 | patterns: 借し方 752 | - expected: 借越金 753 | patterns: 借越し金 754 | - expected: 刈取機 755 | patterns: 刈取り機 756 | - expected: 借主 757 | patterns: 借し主 758 | - expected: 仮渡金 759 | patterns: 仮渡し金 760 | - expected: 缶詰 761 | patterns: 缶詰め 762 | - expected: 気付 763 | patterns: 気付け 764 | - expected: 切手 765 | patterns: 切っ手 766 | - expected: 切符 767 | patterns: 切っ符 768 | - expected: 切替組合員 769 | patterns: 切替え組合員 770 | - expected: 切替日 771 | patterns: 切替え日 772 | - expected: くじ引 773 | patterns: くじ引き 774 | - expected: 組合せ 775 | patterns: 組み合せ 776 | - expected: 組入金 777 | patterns: 組入れ金 778 | - expected: 組立工 779 | patterns: 組立て工 780 | - expected: 倉敷料 781 | patterns: 倉敷き料 782 | - expected: 繰上償還 783 | patterns: 繰上げ償還 784 | - expected: 繰入金 785 | patterns: 繰入れ金 786 | - expected: 繰入限度額 787 | patterns: 繰入れ限度額 788 | - expected: 繰入率 789 | patterns: 繰入れ率 790 | - expected: 繰替金 791 | patterns: 繰替し金 792 | - expected: 繰越金 793 | patterns: 繰越し金 794 | - expected: 繰延資産 795 | patterns: 繰延べ資産 796 | - expected: 消印 797 | patterns: 消し印 798 | - expected: 月賦払 799 | patterns: 月賦払い 800 | - expected: 現金払 801 | patterns: 現金払い 802 | - expected: 小売 803 | patterns: 小売り 804 | - expected: 小売商 805 | patterns: 小売り商 806 | - expected: 小切手 807 | patterns: 小切っ手 808 | - expected: 木立 809 | patterns: 木立ち 810 | - expected: 小包 811 | patterns: 小包み 812 | - expected: 子守 813 | patterns: 子守り 814 | - expected: 献立 815 | patterns: 献立て 816 | - expected: 先取特権 817 | patterns: 先取り特権 818 | - expected: 作付面積 819 | patterns: 作付け面積 820 | - expected: 挿絵 821 | patterns: 挿し絵 822 | - expected: 差押命令 823 | patterns: 差押え命令 824 | - expected: 座敷 825 | patterns: 座敷き 826 | - expected: 指図 827 | patterns: 指し図 828 | - expected: 差出人 829 | patterns: 差出し人 830 | - expected: 差引勘定 831 | patterns: 差引き勘定 832 | - expected: 差引簿 833 | patterns: 差引き簿 834 | - expected: 刺身 835 | patterns: 刺し身 836 | - expected: 試合 837 | patterns: 試合い 838 | - expected: 仕上機械 839 | patterns: 仕上げ機械 840 | - expected: 仕上工 841 | patterns: 仕上げ工 842 | - expected: 仕入価格 843 | patterns: 仕入れ価格 844 | - expected: 仕掛花火 845 | patterns: 仕掛け花火 846 | - expected: 仕掛品 847 | patterns: 仕掛り品 848 | - expected: 敷網 849 | patterns: 敷き網 850 | - expected: 敷居 851 | patterns: 敷き居 852 | - expected: 敷石 853 | patterns: 敷き石 854 | - expected: 敷金 855 | patterns: 敷き金 856 | - expected: 敷地 857 | patterns: 敷き地 858 | - expected: 敷布 859 | patterns: 敷き布 860 | - expected: 敷物 861 | patterns: 敷き物 862 | - expected: 軸受 863 | patterns: 軸受け 864 | - expected: 下請工事 865 | patterns: 下請け工事 866 | - expected: 仕出屋 867 | patterns: 仕出し屋 868 | - expected: 仕立券 869 | patterns: 仕立て券 870 | - expected: 仕立物 871 | patterns: 仕立て物 872 | - expected: 仕立屋 873 | patterns: 仕立て屋 874 | - expected: 質入証券 875 | patterns: 質入れ証券 876 | - expected: 支払 877 | patterns: 支払い 878 | - expected: 支払元受高 879 | patterns: 支払い元受高 880 | - expected: 字引 881 | patterns: 字引き 882 | - expected: 仕向地 883 | patterns: 仕向け地 884 | - expected: 事務取扱 885 | patterns: 事務取扱い 886 | - expected: 事務引継 887 | patterns: 事務引継ぎ 888 | - expected: 締切日 889 | patterns: 締切り日 890 | - expected: 所得割 891 | patterns: 所得割り 892 | - expected: 新株買付契約書 893 | patterns: 新株買付け契約書 894 | - expected: 据置期間 895 | patterns: 据置き期間 896 | - expected: 支払済額 897 | patterns: 支払い済額 898 | - expected: 関取 899 | patterns: 関取り 900 | - expected: 備付品 901 | patterns: 備付け品 902 | - expected: 型絵染 903 | patterns: 型絵染め 904 | - expected: ただし書 905 | patterns: ただし書き 906 | - expected: 但書 907 | patterns: ただし書き 908 | - expected: 立会演説 909 | patterns: 立会い演説 910 | - expected: 立会人 911 | patterns: 立会い人 912 | - expected: 立入検査 913 | patterns: 立入り検査 914 | - expected: 立場 915 | patterns: 立ち場 916 | - expected: 竜巻 917 | patterns: 竜巻き 918 | - expected: 立替金 919 | patterns: 立替え金 920 | - expected: 立替払 921 | patterns: 立替え払 922 | - expected: 建具 923 | patterns: 建て具 924 | - expected: 建坪 925 | patterns: 建て坪 926 | - expected: 建値 927 | patterns: 建て値 928 | - expected: 建前 929 | patterns: 建て前 930 | - expected: 建物 931 | patterns: 建て物 932 | - expected: 棚卸資産 933 | patterns: 棚卸し資産 934 | - expected: 条件付採用 935 | patterns: 条件付き採用 936 | - expected: 月掛貯金 937 | patterns: 月掛け貯金 938 | - expected: 付添人 939 | patterns: 付添い人 940 | - expected: 漬物 941 | patterns: 漬け物 942 | - expected: 積卸施設 943 | patterns: 積卸し施設 944 | - expected: 積出地 945 | patterns: 積出し地 946 | - expected: 積立金 947 | patterns: 積立て金 948 | - expected: 積荷 949 | patterns: 積み荷 950 | - expected: 詰所 951 | patterns: 詰め所 952 | - expected: 釣堀 953 | patterns: 釣り堀 954 | - expected: 手当 955 | patterns: 手当て 956 | - expected: 出入口 957 | patterns: 出入り口 958 | - expected: 出来高払 959 | patterns: 出来高払い 960 | - expected: 手付金 961 | patterns: 手付け金 962 | - expected: 手引 963 | patterns: 手引き 964 | - expected: 手引書 965 | patterns: 手引き書 966 | - expected: 手回品 967 | patterns: 手回り品 968 | - expected: 手持品 969 | patterns: 手持ち品 970 | - expected: 灯台守 971 | patterns: 灯台守り 972 | - expected: 頭取 973 | patterns: 頭取り 974 | - expected: 欠席届 975 | patterns: 欠席届け 976 | - expected: 留置電報 977 | patterns: 留置き電報 978 | - expected: 取扱所 979 | patterns: 取扱い所 980 | - expected: 取扱注意 981 | patterns: 取扱い注意 982 | - expected: 取入口 983 | patterns: 取入れ口 984 | - expected: 取替品 985 | patterns: 取替え品 986 | - expected: 取組 987 | patterns: 取組み 988 | - expected: 取消処分 989 | patterns: 取消し処分 990 | - expected: 取締法 991 | patterns: 取締り法 992 | - expected: 取締役 993 | patterns: 取締り役 994 | - expected: 取立金 995 | patterns: 取立て金 996 | - expected: 取立訴訟 997 | patterns: 取立て訴訟 998 | - expected: 取次店 999 | patterns: 取次ぎ店 1000 | - expected: 取付工事 1001 | patterns: 取付け工事 1002 | - expected: 取引 1003 | patterns: 取引き 1004 | - expected: 取引所 1005 | patterns: 取引き所 1006 | - expected: 取戻請求権 1007 | patterns: 取戻し請求権 1008 | - expected: 問屋 1009 | patterns: 問い屋 1010 | - expected: 仲買 1011 | patterns: 仲買い 1012 | - expected: 仲立業 1013 | patterns: 仲立ち業 1014 | - expected: 投売品 1015 | patterns: 投売り品 1016 | - expected: 並木 1017 | patterns: 並み木 1018 | - expected: 縄張 1019 | patterns: 縄張り 1020 | - expected: 荷扱場 1021 | patterns: 荷扱い場 1022 | - expected: 荷受人 1023 | patterns: 荷受け人 1024 | - expected: 荷造機 1025 | patterns: 荷造り機 1026 | - expected: 荷造費 1027 | patterns: 荷造り費 1028 | - expected: 春慶塗 1029 | patterns: 春慶塗り 1030 | - expected: 休暇願 1031 | patterns: 休暇願い 1032 | - expected: 乗合船 1033 | patterns: 乗合い船 1034 | - expected: 乗合旅客 1035 | patterns: 乗合い旅客 1036 | - expected: 乗換駅 1037 | patterns: 乗換え駅 1038 | - expected: 乗組員 1039 | patterns: 乗組み員 1040 | - expected: 場合 1041 | patterns: 場合い 1042 | - expected: 羽織 1043 | patterns: 羽織り 1044 | - expected: 履物 1045 | patterns: 履き物 1046 | - expected: 葉巻 1047 | patterns: 葉巻き 1048 | - expected: 払込金 1049 | patterns: 払込み金 1050 | - expected: 払下品 1051 | patterns: 払下げ品 1052 | - expected: 払出金 1053 | patterns: 払出し金 1054 | - expected: 払戻金 1055 | patterns: 払戻し金 1056 | - expected: 払戻証書 1057 | patterns: 払戻し証書 1058 | - expected: 払渡金 1059 | patterns: 払渡し金 1060 | - expected: 払渡郵便局 1061 | patterns: 払渡し郵便局 1062 | - expected: 番組 1063 | patterns: 番組み 1064 | - expected: 番付 1065 | patterns: 番付け 1066 | - expected: 控室 1067 | patterns: 控え室 1068 | - expected: 引当金 1069 | patterns: 引当て金 1070 | - expected: 引受時間 1071 | patterns: 引受け時間 1072 | - expected: 引受人 1073 | patterns: 引受け人 1074 | - expected: 引換券 1075 | patterns: 引換え券 1076 | - expected: 代金引換 1077 | patterns: 代金引換え 1078 | - expected: 引継事業 1079 | patterns: 引継ぎ事業 1080 | - expected: 引継調書 1081 | patterns: 引継ぎ調書 1082 | - expected: 引取経費 1083 | patterns: 引取り経費 1084 | - expected: 引取税 1085 | patterns: 引取り税 1086 | - expected: 引渡人 1087 | patterns: 引渡し人 1088 | - expected: 日付 1089 | patterns: 日付け 1090 | - expected: 引込線 1091 | patterns: 引込み線 1092 | - expected: 瓶詰 1093 | patterns: 瓶詰め 1094 | - expected: 歩合 1095 | patterns: 歩合い 1096 | - expected: 封切館 1097 | patterns: 封切り館 1098 | - expected: 福引券 1099 | patterns: 福引き券 1100 | - expected: 船積貨物 1101 | patterns: 船積み貨物 1102 | - expected: 踏切 1103 | patterns: 踏切り 1104 | - expected: 振替 1105 | patterns: 振替え 1106 | - expected: 振込金 1107 | patterns: 振込み金 1108 | - expected: 振出人 1109 | patterns: 振出し人 1110 | - expected: 不渡手形 1111 | patterns: 不渡り手形 1112 | - expected: 分割払 1113 | patterns: 分割払い 1114 | - expected: 鎌倉彫 1115 | patterns: 鎌倉彫り 1116 | - expected: 掘抜井戸 1117 | patterns: 掘抜き井戸 1118 | - expected: 前受人 1119 | patterns: 前受け人 1120 | - expected: 前貸金 1121 | patterns: 前貸金 1122 | - expected: 巻上機 1123 | patterns: 巻上げ機 1124 | - expected: 巻紙 1125 | patterns: 巻き紙 1126 | - expected: 巻尺 1127 | patterns: 巻き尺 1128 | - expected: 巻物 1129 | patterns: 巻き物 1130 | - expected: 待合室 1131 | patterns: 待合い室 1132 | - expected: 見返物資 1133 | patterns: 見返り物資 1134 | - expected: 見込額 1135 | patterns: 見込み額 1136 | - expected: 見込数量 1137 | patterns: 見込み数量 1138 | - expected: 見込納付 1139 | patterns: 見込み納付 1140 | - expected: 水張検査 1141 | patterns: 水張り検査 1142 | - expected: 水引 1143 | patterns: 水引き 1144 | - expected: 見積書 1145 | patterns: 見積り書 1146 | - expected: 見取図 1147 | patterns: 見取り図 1148 | - expected: 見習工 1149 | patterns: 見習い工 1150 | - expected: 未払勘定 1151 | patterns: 未払い勘定 1152 | - expected: 未払年金 1153 | patterns: 未払い年金 1154 | - expected: 見舞品 1155 | patterns: 見舞い品 1156 | - expected: 名義書換 1157 | patterns: 名義書換え 1158 | - expected: 申込書 1159 | patterns: 申込み書 1160 | - expected: 申立人 1161 | patterns: 申立て人 1162 | - expected: 持込禁止 1163 | patterns: 持込み禁止 1164 | - expected: 元売業者 1165 | patterns: 元売り業者 1166 | - expected: 物置 1167 | patterns: 物置き 1168 | - expected: 物語 1169 | patterns: 物語り 1170 | - expected: 物干場 1171 | patterns: 物干し場 1172 | - expected: 備前焼 1173 | patterns: 備前焼き 1174 | - expected: 役割 1175 | patterns: 役割り 1176 | - expected: 屋敷 1177 | patterns: 屋敷き 1178 | - expected: 雇入契約 1179 | patterns: 雇入れ契約 1180 | - expected: 雇止手当 1181 | patterns: 雇止め手当 1182 | - expected: 夕立 1183 | patterns: 夕立ち 1184 | - expected: 譲受人 1185 | patterns: 譲受け人 1186 | - expected: 譲受人 1187 | patterns: 譲り受け人 1188 | - expected: 湯沸器 1189 | patterns: 湯沸し器 1190 | - expected: 呼出符号 1191 | patterns: 呼出し符号 1192 | - expected: 読替規定 1193 | patterns: 読替え規定 1194 | - expected: 読替規定 1195 | patterns: 読み替え規定 1196 | - expected: 陸揚地 1197 | patterns: 陸揚げ地 1198 | - expected: 陸揚量 1199 | patterns: 陸揚げ量 1200 | - expected: 両替 1201 | patterns: 両替え 1202 | - expected: 割合 1203 | patterns: 割合い 1204 | - expected: 割合 1205 | patterns: 割り合い 1206 | - expected: 割当額 1207 | patterns: 割当て額 1208 | - expected: 割当額 1209 | patterns: 割り当て額 1210 | - expected: 割高 1211 | patterns: 割り高 1212 | - expected: 割引 1213 | patterns: 割引き 1214 | - expected: 割引 1215 | patterns: 割り引き 1216 | - expected: 割増金 1217 | patterns: 割増し金 1218 | - expected: 割増金 1219 | patterns: 割り増し金 1220 | - expected: 割戻金 1221 | patterns: 割戻し金 1222 | - expected: 割戻金 1223 | patterns: 割り戻し金 1224 | - expected: 割安 1225 | patterns: 割り安 1226 | - expected: 〔申請〕 1227 | patterns: 稟請 1228 | - expected: 〔お願い〕 1229 | patterns: 懇請 1230 | - expected: 〔周旋、あっせん〕 1231 | patterns: 牙保 1232 | - expected: 〔模様、色模様〕 1233 | patterns: 彩紋 1234 | - expected: 〔橋〕 1235 | patterns: 橋梁 1236 | - expected: 〔ほこり〕 1237 | patterns: 塵埃 1238 | - expected: 〔まぶた〕 1239 | patterns: 眼瞼 1240 | - expected: 佃煮 1241 | patterns: つくだ煮 1242 | - expected: 艀 1243 | patterns: はしけ 1244 | - expected: でんぷん 1245 | patterns: 澱粉 1246 | - expected: あっせん 1247 | patterns: 斡旋 1248 | - expected: 右舷 1249 | patterns: 右げん 1250 | prh: 「舷」は常用漢字(H22年~) 1251 | - expected: 改ざん 1252 | patterns: 改竄 1253 | - expected: 口こう 1254 | patterns: 口腔 1255 | - expected: 車両 1256 | patterns: 車輌 1257 | - expected: 扇動 1258 | patterns: 煽動 1259 | - expected: 停泊 1260 | patterns: 碇泊 1261 | - expected: 編集 1262 | patterns: 編輯 1263 | - expected: 保育 1264 | patterns: 哺育 1265 | - expected: 放棄 1266 | patterns: 抛棄 1267 | - expected: 用人 1268 | patterns: 傭人 1269 | - expected: 連 1270 | patterns: 聯 1271 | - expected: 練乳 1272 | patterns: 煉乳 1273 | - expected: 〔雑報〕 1274 | patterns: 彙報 1275 | - expected: 〔印形〕 1276 | patterns: 印顆 1277 | - expected: 〔改心〕 1278 | patterns: 改悛 1279 | - expected: 〔切除〕 1280 | patterns: 剪除 1281 | - expected: 〔騒乱〕 1282 | patterns: 擾乱 1283 | - expected: 〔出水〕 1284 | patterns: 溢水 1285 | - expected: 〔戒告〕 1286 | patterns: 譴責 1287 | - expected: 〔汚職〕 1288 | patterns: ?職 1289 | - expected: 〔かばう〕 1290 | patterns: 庇護 1291 | - expected: 〔破る〕 1292 | patterns: 破毀 1293 | - expected: 〔酔う〕 1294 | patterns: 酩酊 1295 | - expected: である。 1296 | patterns: だ。 1297 | - expected: であろう 1298 | patterns: だろう 1299 | - expected: であった 1300 | patterns: だった 1301 | - expected: ますが 1302 | patterns: まするが 1303 | - expected: ますけれども 1304 | patterns: まするけれども 1305 | - expected: ×× 1306 | patterns: ますれば 1307 | - expected: ×× 1308 | patterns: くださいませ 1309 | - expected: しなければ 1310 | patterns: せねば 1311 | - expected: すべき 1312 | patterns: するべき 1313 | - expected: される 1314 | patterns: せられる 1315 | - expected: させる 1316 | patterns: せさせる 1317 | - expected: しない 1318 | patterns: せぬ 1319 | - expected: しない 1320 | patterns: せない 1321 | - expected: しなければ 1322 | patterns: せなければ 1323 | - expected: 時から 1324 | patterns: 時より 1325 | prh: 「より」は比較を示す場合にだけ用いる。 1326 | - expected: 分から 1327 | patterns: 分より 1328 | prh: 「より」は比較を示す場合にだけ用いる。 1329 | - expected: 日から 1330 | patterns: 日より 1331 | prh: 「より」は比較を示す場合にだけ用いる。 1332 | - expected: あいにく 1333 | patterns: 生憎 1334 | - expected: 曖昧 1335 | patterns: あいまい 1336 | prh: 「曖」「昧」は常用漢字(H22年~) 1337 | - expected: あいまって 1338 | patterns: 相まって 1339 | - expected: あいまって 1340 | patterns: 相俟って 1341 | - expected: 〔支障、困難、障害〕 1342 | patterns: 隘路 1343 | - expected: あえて 1344 | patterns: 敢えて 1345 | - expected: あえて 1346 | patterns: 敢て 1347 | - expected: 飽くまで 1348 | patterns: 飽く迄 1349 | - expected: 挙げ句 1350 | patterns: あげく 1351 | - expected: あずかる 1352 | patterns: 与る 1353 | - expected: あずかり 1354 | patterns: 与り 1355 | - expected: あたかも 1356 | patterns: 恰も 1357 | - expected: 当たり前 1358 | patterns: あたりまえ 1359 | - expected: あつらえ 1360 | patterns: 誂え 1361 | - expected: 宛名 1362 | patterns: あて名 1363 | prh: 「宛」は常用漢字(H22年~) 1364 | - expected: あながち 1365 | patterns: 強ち 1366 | - expected: あなた 1367 | patterns: 貴方 1368 | - expected: あまつさえ 1369 | patterns: 剰え 1370 | - expected: あまねく 1371 | patterns: 普く 1372 | - expected: あまねく 1373 | patterns: 遍く 1374 | - expected: 余りに 1375 | patterns: あまりに 1376 | - expected: あらかじめ 1377 | patterns: 予め 1378 | - expected: あらず 1379 | patterns: 非ず 1380 | - expected: 改めて 1381 | patterns: あらためて 1382 | - expected: あらゆる 1383 | patterns: 凡ゆる 1384 | - expected: 在りか 1385 | patterns: ありか 1386 | - expected: 在りか 1387 | patterns: 在り処 1388 | - expected: 在り方 1389 | patterns: ありかた 1390 | - expected: 在り方 1391 | patterns: あり方 1392 | - expected: 有り難み 1393 | patterns: ありがたみ 1394 | - expected: 有り難が 1395 | patterns: ありがたが 1396 | - expected: 有り難い 1397 | patterns: ありがたい 1398 | - expected: ありがとう 1399 | patterns: 有難う 1400 | - expected: ありがとう 1401 | patterns: 有り難う 1402 | - expected: あるいは 1403 | patterns: 或いは 1404 | - expected: 言う 1405 | patterns: 云う 1406 | - expected: いえども 1407 | patterns: 雖も 1408 | - expected: いかなる 1409 | patterns: 如何なる 1410 | - expected: いかん 1411 | patterns: 如何 1412 | - expected: いささか 1413 | patterns: 些か 1414 | - expected: いささか 1415 | patterns: 聊か 1416 | - expected: いずれ 1417 | patterns: 何れ 1418 | - expected: 抱く 1419 | patterns: 懐く 1420 | - expected: 致し方 1421 | patterns: いたし方 1422 | - expected: いだす 1423 | patterns: 出だす 1424 | - expected: いたずらに 1425 | patterns: 徒に 1426 | - expected: 至って 1427 | patterns: いたって 1428 | - expected: 至る 1429 | patterns: 到る 1430 | - expected: を頂 1431 | patterns: をいただ 1432 | - expected: いちず 1433 | patterns: 一途 1434 | - expected: 〔移達〕 1435 | patterns: 移牒 1436 | - expected: 一向 1437 | patterns: いっこう 1438 | - expected: 一切 1439 | patterns: いっさい 1440 | - expected: 一緒 1441 | patterns: いっしょ 1442 | - expected: 一斉 1443 | patterns: いっせい 1444 | - expected: 一層 1445 | patterns: いっそう 1446 | - expected: 一旦 1447 | patterns: いったん 1448 | prh: 「旦」は常用漢字(H22年~) 1449 | - expected: 一遍に 1450 | patterns: いっぺんに 1451 | - expected: 今更 1452 | patterns: 今さら 1453 | - expected: いまだ 1454 | patterns: 未だ 1455 | - expected: いよいよ 1456 | patterns: 愈々 1457 | - expected: 意欲 1458 | patterns: 意慾 1459 | - expected: いろいろ 1460 | patterns: 色々 1461 | - expected: 言わば 1462 | patterns: いわば 1463 | - expected: 言わば 1464 | patterns: 謂わば 1465 | - expected: いわゆる 1466 | patterns: 所謂 1467 | - expected: いわんや 1468 | patterns: 況や 1469 | - expected: うたう 1470 | patterns: 謳う 1471 | - expected: のうち、 1472 | patterns: の内、 1473 | - expected: 恭し 1474 | patterns: うやうやし 1475 | - expected: 得るところ 1476 | patterns: うるところ 1477 | - expected: し得る 1478 | patterns: しうる 1479 | - expected: やむを得 1480 | patterns: やむをえ 1481 | - expected: うんぬん 1482 | patterns: 云々 1483 | - expected: お願い 1484 | patterns: 御願い 1485 | prh: 「御」の読みは、オン・ゴ。 1486 | - expected: おいて 1487 | patterns: 於いて 1488 | - expected: おいて 1489 | patterns: 於て 1490 | - expected: おおむね 1491 | patterns: 概ね 1492 | - expected: おおよそ 1493 | patterns: 大凡 1494 | - expected: おかげ 1495 | patterns: お蔭 1496 | - expected: 押す 1497 | patterns: 捺す 1498 | - expected: 遅い 1499 | patterns: 晩い 1500 | - expected: おそれ 1501 | patterns: 虞 1502 | - expected: 音沙汰 1503 | patterns: 音さた 1504 | prh: 「沙」「汰」は常用漢字(H22年~) 1505 | - expected: 大人 1506 | patterns: おとな 1507 | - expected: 各々 1508 | patterns: おのおの 1509 | - expected: おのずから 1510 | patterns: 自ずから 1511 | - expected: おびただし 1512 | patterns: 夥し 1513 | - expected: おぼしめし 1514 | patterns: 思召し 1515 | - expected: おぼしめし 1516 | patterns: 思し召し 1517 | - expected: おぼつかな 1518 | patterns: 覚束な 1519 | - expected: 面白 1520 | patterns: おもしろ 1521 | - expected: おもむろに 1522 | patterns: 徐に 1523 | - expected: 主に 1524 | patterns: おもに 1525 | - expected: 思わく 1526 | patterns: 思惑 1527 | - expected: 趣 1528 | patterns: おもむき 1529 | - expected: その折 1530 | patterns: そのおり 1531 | - expected: およそ 1532 | patterns: 凡そ 1533 | - expected: 赴く 1534 | patterns: おもむく 1535 | - expected: 折から 1536 | patterns: おりから 1537 | - expected: 折から 1538 | patterns: 折柄 1539 | - expected: はおろか 1540 | patterns: は疎か 1541 | - expected: おろそか 1542 | patterns: 疎か 1543 | - expected: か(箇) 1544 | patterns: ヶ 1545 | - expected: かい 1546 | patterns: 甲斐 1547 | - expected: 回送 1548 | patterns: 廻送 1549 | - expected: 回送 1550 | patterns: 回漕 1551 | - expected: かえって 1552 | patterns: 却って 1553 | - expected: かかる 1554 | patterns: 懸かる 1555 | - expected: かかる 1556 | patterns: 罹る 1557 | - expected: に係る 1558 | patterns: に関る 1559 | - expected: に係る 1560 | patterns: にかかる 1561 | - expected: かかわ 1562 | patterns: 拘わ 1563 | - expected: かき 1564 | patterns: ?き 1565 | - expected: かたがた 1566 | patterns: 旁々 1567 | - expected: かたじけない 1568 | patterns: 忝い 1569 | - expected: 片付け 1570 | patterns: 片附け 1571 | - expected: 傍ら 1572 | patterns: かたわら 1573 | - expected: 画期的 1574 | patterns: 劃期的 1575 | - expected: かつて 1576 | patterns: 嘗て 1577 | - expected: 活発 1578 | patterns: 活撥 1579 | - expected: 片仮名 1580 | patterns: カタカナ 1581 | - expected: 仮名遣い 1582 | patterns: かな遣い 1583 | - expected: 平仮名 1584 | patterns: ひらがな 1585 | - expected: かなう 1586 | patterns: 敵う 1587 | - expected: かなう 1588 | patterns: 適う 1589 | - expected: かなう 1590 | patterns: 叶う 1591 | - expected: かなた 1592 | patterns: 彼方 1593 | - expected: かねて 1594 | patterns: 予ねて 1595 | - expected: かねて 1596 | patterns: 予て 1597 | - expected: 絡む 1598 | patterns: からむ 1599 | - expected: かんがみ 1600 | patterns: 鑑み 1601 | - expected: 気掛かり 1602 | patterns: 気がかり 1603 | - expected: 希薄 1604 | patterns: 稀薄 1605 | - expected: 寄附 1606 | patterns: 寄付 1607 | - expected: 〔昨年末〕 1608 | patterns: 旧臘 1609 | - expected: を下さ 1610 | patterns: をくださ 1611 | - expected: 比べ 1612 | patterns: 較べ 1613 | - expected: 繰り返 1614 | patterns: くりかえ 1615 | - expected: くれぐれも 1616 | patterns: 呉々も 1617 | - expected: くれ 1618 | patterns: 呉れ 1619 | - expected: 係属 1620 | patterns: 繋属 1621 | - expected: 啓もう 1622 | patterns: 啓蒙 1623 | - expected: けた 1624 | patterns: 桁 1625 | - expected: けだし 1626 | patterns: 蓋し 1627 | - expected: 結構 1628 | patterns: けっこう 1629 | - expected: こうして 1630 | patterns: 斯うして 1631 | - expected: 被る 1632 | patterns: 蒙る 1633 | - expected: 高揚 1634 | patterns: 昂揚 1635 | - expected: ここ 1636 | patterns: 此処 1637 | - expected: 心掛け 1638 | patterns: 心がけ 1639 | - expected: こしらえ 1640 | patterns: 拵え 1641 | - expected: こぞって 1642 | patterns: 挙って 1643 | - expected: 御存じ 1644 | patterns: 御存知 1645 | - expected: (応or答)え 1646 | patterns: こたえ 1647 | prh: 「応える」は常用漢字表の読み(H22年~) 1648 | - expected: ごとに 1649 | patterns: 毎に 1650 | - expected: 事柄 1651 | patterns: ことがら 1652 | - expected: ごとく 1653 | patterns: 如く 1654 | - expected: ことごとく 1655 | patterns: 悉く 1656 | - expected: 殊更 1657 | patterns: ことさら 1658 | - expected: 殊の外 1659 | patterns: ことのほか 1660 | - expected: 子供 1661 | patterns: 子ども 1662 | - expected: 〔誤り〕 1663 | patterns: 誤謬 1664 | - expected: 御無沙汰 1665 | patterns: ごぶさた 1666 | prh: 「沙」「汰」は常用漢字(H22年~) 1667 | - expected: 根底 1668 | patterns: 根柢 1669 | - expected: 先ほど 1670 | patterns: 先程 1671 | - expected: ささいな 1672 | patterns: 些細な 1673 | - expected: ささげ 1674 | patterns: 捧げ 1675 | - expected: 差し上げ 1676 | patterns: さしあげ 1677 | - expected: 差し当たり 1678 | patterns: さしあたり 1679 | - expected: 差し障り 1680 | patterns: 差しさわり 1681 | - expected: さしずめ 1682 | patterns: 差し詰め 1683 | - expected: 差し出す 1684 | patterns: さしだす 1685 | - expected: 差し支え 1686 | patterns: さしつかえ 1687 | - expected: 差し遣わ 1688 | patterns: さしつかわ 1689 | - expected: 差し向き 1690 | patterns: さしむき 1691 | - expected: さすがに 1692 | patterns: 流石に 1693 | - expected: 沙汰 1694 | patterns: さた 1695 | prh: 「沙」「汰」は常用漢字(H22年~) 1696 | - expected: さばく 1697 | patterns: 捌く 1698 | - expected: さほど 1699 | patterns: 左程 1700 | - expected: 様々 1701 | patterns: さまざま 1702 | - expected: 強いて 1703 | patterns: しいて 1704 | - expected: 〔この方面、この社会〕 1705 | patterns: 斯界 1706 | - expected: 〔そうでない〕 1707 | patterns: 然らざる 1708 | - expected: しかるに 1709 | patterns: 然るに 1710 | - expected: しきりに 1711 | patterns: 頻りに 1712 | - expected: 仕組み 1713 | patterns: しくみ 1714 | - expected: 刺激 1715 | patterns: 刺戟 1716 | - expected: 子細 1717 | patterns: 仔細 1718 | - expected: 〔この道〕 1719 | patterns: 斯道 1720 | - expected: しばしば 1721 | patterns: 屡々 1722 | - expected: しばらく 1723 | patterns: 暫く 1724 | - expected: てしまう 1725 | patterns: て終う 1726 | - expected: 締切り 1727 | patterns: 〆切 1728 | - expected: 車両 1729 | patterns: 車輌 1730 | - expected: 〔器物〕 1731 | patterns: 什器 1732 | - expected: 十分 1733 | patterns: 充分 1734 | - expected: しゅん工 1735 | patterns: 竣工 1736 | - expected: 〔その他、そのほか〕 1737 | patterns: 自余 1738 | - expected: 〔証拠〕 1739 | patterns: 証憑 1740 | - expected: 〔以後、その後〕 1741 | patterns: 爾来 1742 | - expected: 退ける 1743 | patterns: 斥ける 1744 | - expected: 記す 1745 | patterns: 印す 1746 | - expected: 〔真剣、熱心、まじめ〕 1747 | patterns: 真摯 1748 | - expected: 〔手加減、手心、取捨選択、遠慮〕 1749 | patterns: 斟酌 1750 | - expected: 浸食 1751 | patterns: 浸蝕 1752 | - expected: 尋問 1753 | patterns: 訊問 1754 | - expected: 随分 1755 | patterns: ずいぶん 1756 | - expected: 〔成り行き、大勢、形勢、傾向〕 1757 | patterns: 趨勢 1758 | - expected: すぐに 1759 | patterns: 直ぐに 1760 | - expected: 優れる 1761 | patterns: 勝れる 1762 | - expected: すこぶる 1763 | patterns: 頗る 1764 | - expected: 既に 1765 | patterns: すでに 1766 | - expected: すなわち 1767 | patterns: 乃ち 1768 | - expected: すなわち 1769 | patterns: 則ち 1770 | - expected: すなわち 1771 | patterns: 即ち 1772 | - expected: すべて 1773 | patterns: 凡て 1774 | - expected: すべて 1775 | patterns: 総て 1776 | - expected: 制御 1777 | patterns: 制禦 1778 | - expected: せっかく 1779 | patterns: 折角 1780 | - expected: 是非 1781 | patterns: ぜひ 1782 | - expected: 〔配慮、選考、審議〕 1783 | patterns: 詮議 1784 | - expected: 選考 1785 | patterns: 詮衡 1786 | - expected: 扇動 1787 | patterns: 煽動 1788 | - expected: 〔全容、全体〕 1789 | patterns: 全貌 1790 | - expected: 総合 1791 | patterns: 綜合 1792 | - expected: 装丁 1793 | patterns: 装幀 1794 | - expected: 〔賢明、賢い〕 1795 | patterns: 聡明 1796 | - expected: そもそも 1797 | patterns: 抑々 1798 | - expected: そろお 1799 | patterns: 揃お 1800 | - expected: そろえ 1801 | patterns: 揃え 1802 | - expected: そろう 1803 | patterns: 揃う 1804 | - expected: そろっ 1805 | patterns: 揃っ 1806 | - expected: そろい 1807 | patterns: 揃い 1808 | - expected: そろわ 1809 | patterns: 揃わ 1810 | - expected: 大概 1811 | patterns: たいがい 1812 | - expected: 大した 1813 | patterns: たいした 1814 | - expected: 大層 1815 | patterns: たいそう 1816 | - expected: 大体 1817 | patterns: だいたい 1818 | - expected: 大抵 1819 | patterns: たいてい 1820 | - expected: たくさん 1821 | patterns: 沢山 1822 | - expected: 立ち退く 1823 | patterns: 立ちのく 1824 | - expected: たちまち 1825 | patterns: 忽ち 1826 | - expected: 盾 1827 | patterns: 楯 1828 | - expected: 頼もし 1829 | patterns: たのもし 1830 | - expected: 多分 1831 | patterns: たぶん 1832 | - expected: 暖房 1833 | patterns: 煖房 1834 | - expected: 近頃 1835 | patterns: 近ごろ 1836 | prh: 「頃」は常用漢字(H22年~) 1837 | - expected: 〔よく知る〕 1838 | patterns: 知悉 1839 | - expected: ちなも 1840 | patterns: 因も 1841 | - expected: ちなめ 1842 | patterns: 因め 1843 | - expected: ちなみ 1844 | patterns: 因み 1845 | - expected: ちなん 1846 | patterns: 因ん 1847 | - expected: ちなま 1848 | patterns: 因ま 1849 | - expected: ちなむ 1850 | patterns: 因む 1851 | - expected: 〔周密、密集〕 1852 | patterns: 稠密 1853 | - expected: 注 1854 | patterns: 註 1855 | - expected: 帳じり 1856 | patterns: 帳尻 1857 | - expected: ちょうど 1858 | patterns: 丁度 1859 | - expected: 〔はる、はり付ける〕 1860 | patterns: 貼付 1861 | - expected: 沈殿 1862 | patterns: 沈澱 1863 | - expected: ついでに 1864 | patterns: 序でに 1865 | - expected: ついに 1866 | patterns: 遂に 1867 | - expected: 〔通達〕 1868 | patterns: 通牒 1869 | - expected: 付け 1870 | patterns: 附け 1871 | - expected: つづっ 1872 | patterns: 綴っ 1873 | - expected: つづろ 1874 | patterns: 綴ろ 1875 | - expected: つづれ 1876 | patterns: 綴れ 1877 | - expected: つづり 1878 | patterns: 綴り 1879 | - expected: つづら 1880 | patterns: 綴ら 1881 | - expected: つづる 1882 | patterns: 綴る 1883 | - expected: つながろ 1884 | patterns: 繋がろ 1885 | - expected: つながれ 1886 | patterns: 繋がれ 1887 | - expected: つながる 1888 | patterns: 繋がる 1889 | - expected: つながり 1890 | patterns: 繋がり 1891 | - expected: つながっ 1892 | patterns: 繋がっ 1893 | - expected: つながら 1894 | patterns: 繋がら 1895 | - expected: つまびらか 1896 | patterns: 詳らか 1897 | - expected: つもり 1898 | patterns: 心算 1899 | - expected: 抵触 1900 | patterns: 牴触 1901 | - expected: 手後れ 1902 | patterns: 手おくれ 1903 | - expected: 手掛かり 1904 | patterns: 手がかり 1905 | - expected: 手際 1906 | patterns: 手ぎわ 1907 | - expected: 手頃 1908 | patterns: 手ごろ 1909 | prh: 「頃」は常用漢字(H22年~) 1910 | - expected: 手はず 1911 | patterns: 手筈 1912 | - expected: 手元 1913 | patterns: 手許 1914 | - expected: とうとう 1915 | patterns: 到頭 1916 | - expected: とかく 1917 | patterns: 兎角 1918 | - expected: どこ 1919 | patterns: 何処 1920 | - expected: とはいうものの 1921 | patterns: とは言うものの 1922 | - expected: という場合 1923 | patterns: と言う場合 1924 | - expected: とはいえ 1925 | patterns: とは言え 1926 | - expected: 取りあえず 1927 | patterns: 取り敢えず 1928 | - expected: 取りあえず 1929 | patterns: とりあえず 1930 | - expected: 取りまとめ 1931 | patterns: 取り纏め 1932 | - expected: 取りやめ 1933 | patterns: 取り止め 1934 | - expected: ないし 1935 | patterns: 乃至 1936 | - expected: なかなか 1937 | patterns: 中々 1938 | - expected: 半ば 1939 | patterns: なかば 1940 | - expected: ながら 1941 | patterns: 乍ら 1942 | - expected: なかんずく 1943 | patterns: 就中 1944 | - expected: なぜ 1945 | patterns: 何故 1946 | - expected: 何とぞ 1947 | patterns: 何卒 1948 | - expected: 並々 1949 | patterns: なみなみ 1950 | - expected: 成り立つ 1951 | patterns: なりたつ 1952 | - expected: 成り行き 1953 | patterns: なりゆき 1954 | - expected: なるほど 1955 | patterns: 成程 1956 | - expected: にぎわう 1957 | patterns: 賑わう 1958 | - expected: 担う 1959 | patterns: 荷う 1960 | - expected: にらむ 1961 | patterns: 睨む 1962 | - expected: にわかに 1963 | patterns: 俄かに 1964 | - expected: 懇ろ 1965 | patterns: ねんごろ 1966 | - expected: 脳裏 1967 | patterns: 脳裡 1968 | - expected: 後ほど 1969 | patterns: のちほど 1970 | - expected: のっとっ 1971 | patterns: 則っ 1972 | - expected: のっとろ 1973 | patterns: 則ろ 1974 | - expected: のっとれ 1975 | patterns: 則れ 1976 | - expected: のっとる 1977 | patterns: 則る 1978 | - expected: のっとり 1979 | patterns: 則り 1980 | - expected: のっとら 1981 | patterns: 則ら 1982 | - expected: 飲む 1983 | patterns: 呑む 1984 | - expected: はがき 1985 | patterns: 葉書 1986 | - expected: はかどる 1987 | patterns: 捗る 1988 | - expected: 図らずも 1989 | patterns: はからずも 1990 | - expected: 〔多大〕 1991 | patterns: 莫大 1992 | - expected: はず 1993 | patterns: 筈 1994 | - expected: 外れ 1995 | patterns: はずれ 1996 | - expected: 果たして 1997 | patterns: はたして 1998 | - expected: はつらつ 1999 | patterns: 溌剌 2000 | - expected: 甚だ 2001 | patterns: はなはだ 2002 | - expected: はばかる 2003 | patterns: 憚る 2004 | - expected: 〔煩わしい〕 2005 | patterns: 煩瑣な 2006 | - expected: 〔反論〕 2007 | patterns: 反駁 2008 | - expected: ひいては 2009 | patterns: 延いては 2010 | - expected: 引き起こす 2011 | patterns: 惹き起こす 2012 | - expected: 日ごと 2013 | patterns: 日毎 2014 | - expected: 日頃 2015 | patterns: 日ごろ 2016 | prh: 「頃」は常用漢字(H22年~) 2017 | - expected: ひたすら 2018 | patterns: 只管 2019 | - expected: 〔つまり、つまるところ〕 2020 | patterns: 畢竟 2021 | - expected: 〔必要〕 2022 | patterns: 必須 2023 | - expected: 一方ならぬ 2024 | patterns: ひとかたならぬ 2025 | - expected: ひとしお 2026 | patterns: 一入 2027 | - expected: 一そろい 2028 | patterns: 一揃い 2029 | - expected: 一そろい 2030 | patterns: ひとそろい 2031 | - expected: 一たび 2032 | patterns: ひとたび 2033 | - expected: 一通り 2034 | patterns: ひととおり 2035 | - expected: ひとまず 2036 | patterns: 一先ず 2037 | - expected: ひとわたり 2038 | patterns: 一渡り 2039 | - expected: 〔よりどころ〕 2040 | patterns: 憑拠 2041 | - expected: 広がる 2042 | patterns: 拡がる 2043 | - expected: いうふう 2044 | patterns: いう風 2045 | - expected: ふさわし 2046 | patterns: 相応し 2047 | - expected: 不十分 2048 | patterns: 不充分 2049 | - expected: 再び 2050 | patterns: ふたたび 2051 | - expected: ふだん 2052 | patterns: 普段 2053 | - expected: 符丁 2054 | patterns: 符牒 2055 | - expected: 〔一掃、除去、取り去る〕 2056 | patterns: 払拭 2057 | - expected: 振り仮名 2058 | patterns: ふりがな 2059 | - expected: 奮って 2060 | patterns: ふるって 2061 | - expected: ページ 2062 | patterns: 頁 2063 | - expected: すべき 2064 | patterns: す可き 2065 | - expected: へき地 2066 | patterns: 僻地 2067 | - expected: 〔激励、励ます〕 2068 | patterns: 鞭撻 2069 | - expected: 〔つづる〕 2070 | patterns: 編綴 2071 | - expected: 膨大 2072 | patterns: 厖大 2073 | - expected: てほし 2074 | patterns: て欲し 2075 | - expected: ほとんど 2076 | patterns: 殆ど 2077 | - expected: 誉れ 2078 | patterns: ほまれ 2079 | - expected: 本当 2080 | patterns: ほんとう 2081 | - expected: 〔突進、突き進む〕 2082 | patterns: 邁進 2083 | - expected: 間際 2084 | patterns: まぎわ 2085 | - expected: 誠に 2086 | patterns: まことに 2087 | - expected: 誠に 2088 | patterns: 真に 2089 | - expected: 正に 2090 | patterns: まさに 2091 | - expected: 正に 2092 | patterns: 将に 2093 | - expected: 勝る 2094 | patterns: 優る 2095 | - expected: まして 2096 | patterns: 況して 2097 | - expected: まじめ 2098 | patterns: 真面目 2099 | - expected: まず 2100 | patterns: 先ず 2101 | - expected: ますます 2102 | patterns: 益々 2103 | - expected: 間違お 2104 | patterns: まちがお 2105 | - expected: 間違え 2106 | patterns: まちがえ 2107 | - expected: 間違っ 2108 | patterns: まちがっ 2109 | - expected: 間違わ 2110 | patterns: まちがわ 2111 | - expected: 間違う 2112 | patterns: まちがう 2113 | - expected: 真っ先 2114 | patterns: まっさき 2115 | - expected: 全う 2116 | patterns: まっとう 2117 | - expected: まで 2118 | patterns: 迄 2119 | - expected: まとめ 2120 | patterns: 纏め 2121 | - expected: まね 2122 | patterns: 真似 2123 | - expected: まま 2124 | patterns: 儘 2125 | - expected: 間もなく 2126 | patterns: まもなく 2127 | - expected: まれ 2128 | patterns: 稀 2129 | - expected: 真ん中 2130 | patterns: まんなか 2131 | - expected: 見いだそ 2132 | patterns: 見出そ 2133 | - expected: 見いだせ 2134 | patterns: 見出せ 2135 | - expected: 見いだす 2136 | patterns: 見出す 2137 | - expected: 見いだし 2138 | patterns: 見出し 2139 | - expected: 見いださ 2140 | patterns: 見出さ 2141 | - expected: 見事 2142 | patterns: みごと 2143 | - expected: 自ら 2144 | patterns: みずから 2145 | - expected: 満たす 2146 | patterns: 充たす 2147 | - expected: みだりに 2148 | patterns: 濫りに 2149 | - expected: みだりに 2150 | patterns: 妄りに 2151 | - expected: みなす 2152 | patterns: 見なす 2153 | - expected: みなす 2154 | patterns: 見做す 2155 | - expected: むしろ 2156 | patterns: 寧ろ 2157 | - expected: 無駄 2158 | patterns: むだ 2159 | - expected: むなしい 2160 | patterns: 虚しい 2161 | - expected: むなしい 2162 | patterns: 空しい 2163 | - expected: むやみ 2164 | patterns: 無闇 2165 | - expected: 無論 2166 | patterns: むろん 2167 | - expected: 目当て 2168 | patterns: めあて 2169 | - expected: 銘々 2170 | patterns: めいめい 2171 | - expected: 眼鏡 2172 | patterns: めがね 2173 | - expected: 目指そ 2174 | patterns: めざそ 2175 | - expected: 目指せ 2176 | patterns: めざせ 2177 | - expected: 目指す 2178 | patterns: めざす 2179 | - expected: 目指し 2180 | patterns: めざし 2181 | - expected: 目指さ 2182 | patterns: めざさ 2183 | - expected: めった 2184 | patterns: 滅多 2185 | - expected: めでたい 2186 | patterns: 目出度い 2187 | - expected: 面倒 2188 | patterns: めんどう 2189 | - expected: 申し訳 2190 | patterns: もうしわけ 2191 | - expected: 目途 2192 | patterns: もくと 2193 | - expected: もくろみ 2194 | patterns: 目論見 2195 | - expected: もたらす 2196 | patterns: 齎す 2197 | - expected: もちろん 2198 | patterns: 勿論 2199 | - expected: もって 2200 | patterns: 以って 2201 | - expected: の下 2202 | patterns: のもと 2203 | - expected: もっとも 2204 | patterns: 尤も 2205 | - expected: 専ら 2206 | patterns: もっぱら 2207 | - expected: もとより 2208 | patterns: 素より 2209 | - expected: もとより 2210 | patterns: 固より 2211 | - expected: 最寄りの 2212 | patterns: もよりの 2213 | - expected: てもら 2214 | patterns: て貰 2215 | - expected: 漏ら 2216 | patterns: 洩ら 2217 | - expected: もろもろ 2218 | patterns: 諸々 2219 | - expected: やがて 2220 | patterns: 軈て 2221 | - expected: やかましい 2222 | patterns: 喧しい 2223 | - expected: 安い 2224 | patterns: 廉い 2225 | - expected: やすい 2226 | patterns: 易い 2227 | - expected: 厄介 2228 | patterns: やっかい 2229 | - expected: やはり 2230 | patterns: 矢張り 2231 | - expected: やむをえず 2232 | patterns: 已むを得ず 2233 | - expected: やや 2234 | patterns: 稍 2235 | - expected: ややもすれば 2236 | patterns: 動もすれば 2237 | - expected: 和らい 2238 | patterns: やわらい 2239 | - expected: 和らが 2240 | patterns: やわらが 2241 | - expected: 和らぎ 2242 | patterns: やわらぎ 2243 | - expected: 和らぐ 2244 | patterns: やわらぐ 2245 | - expected: 和らげ 2246 | patterns: やわらげ 2247 | - expected: 和らご 2248 | patterns: やわらご 2249 | - expected: ゆえん 2250 | patterns: 所以 2251 | - expected: ゆがま 2252 | patterns: 歪ま 2253 | - expected: ゆがん 2254 | patterns: 歪ん 2255 | - expected: ゆがみ 2256 | patterns: 歪み 2257 | - expected: ゆがむ 2258 | patterns: 歪む 2259 | - expected: ゆがめ 2260 | patterns: 歪め 2261 | - expected: ゆがも 2262 | patterns: 歪も 2263 | - expected: 委ね 2264 | patterns: ゆだね 2265 | prh: 常用漢字表の読み(H22年~) 2266 | - expected: ゆるがせ 2267 | patterns: 忽せ 2268 | - expected: 〔要点〕 2269 | patterns: 要訣 2270 | - expected: よう人〔雇人、使用人〕 2271 | patterns: 傭人 2272 | - expected: ようやく 2273 | patterns: 漸く 2274 | - expected: 由もない 2275 | patterns: よしもない 2276 | - expected: よって 2277 | patterns: 仍って 2278 | - expected: よりどころ 2279 | patterns: 拠所 2280 | - expected: よろしく 2281 | patterns: 宜しく 2282 | - expected: 世論 2283 | patterns: 輿論 2284 | - expected: 〔はじまり〕 2285 | patterns: 濫觴 2286 | - expected: りゅうちょう〔すらすらと、よどみなく〕 2287 | patterns: 流暢 2288 | - expected: 了解 2289 | patterns: 諒解 2290 | - expected: 了承 2291 | patterns: 諒承 2292 | - expected: 連係 2293 | patterns: 連繋 2294 | - expected: 我が 2295 | patterns: 吾が 2296 | - expected: 分かろ 2297 | patterns: わかろ 2298 | - expected: 分かれ 2299 | patterns: わかれ 2300 | - expected: 分かる 2301 | patterns: わかる 2302 | - expected: 分かり 2303 | patterns: わかり 2304 | - expected: 分かっ 2305 | patterns: わかっ 2306 | - expected: 分から 2307 | patterns: わから 2308 | - expected: 分かる 2309 | patterns: 判る 2310 | - expected: 分かる 2311 | patterns: 解る 2312 | - expected: わきまえ 2313 | patterns: 弁え 2314 | - expected: わざと 2315 | patterns: 態と 2316 | - expected: わたって 2317 | patterns: 亘って 2318 | - expected: わびる 2319 | patterns: 詫る 2320 | - expected: 、 2321 | patterns: , 2322 | - expected: 。 2323 | patterns: . 2324 | - expected: 生かさ 2325 | patterns: 活かさ 2326 | - expected: 生かし 2327 | patterns: 活かし 2328 | - expected: 生かす 2329 | patterns: 活かす 2330 | - expected: 生かせ 2331 | patterns: 活かせ 2332 | - expected: 生かそ 2333 | patterns: 活かそ 2334 | - expected: 県内 2335 | patterns: 県下 2336 | - expected: 御多用 2337 | patterns: 御多忙 2338 | prh: 「忙」は心を亡くすイメージ 2339 | 2340 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "textlint-rule-ja-official-documents", 3 | "repository": { 4 | "type": "git", 5 | "url": "https://github.com/yabuuchi-hiroaki/textlint-rule-ja-official-documents.git" 6 | }, 7 | "author": "Hiroaki YABUUCHI", 8 | "email": "yabu.pharm@gmail.com", 9 | "homepage": "https://github.com/yabuuchi-hiroaki/textlint-rule-ja-official-documents/", 10 | "license": "MIT", 11 | "bugs": { 12 | "url": "https://github.com/yabuuchi-hiroaki/textlint-rule-ja-official-documents/issues" 13 | }, 14 | "files": [ 15 | "src/", 16 | "dict/", 17 | "lib/" 18 | ], 19 | "version": "0.0.1", 20 | "description": "公用文校正のためのtextlintルール", 21 | "main": "lib/textlint-rule-ja-official-documents.js", 22 | "directories": { 23 | "test": "test" 24 | }, 25 | "scripts": { 26 | "test": "textlint-scripts test", 27 | "build": "textlint-scripts build", 28 | "watch": "textlint-scripts build --watch", 29 | "prepublish": "npm run --if-present build" 30 | }, 31 | "keywords": [ 32 | "textlint", 33 | "textlintrule" 34 | ], 35 | "devDependencies": { 36 | "textlint-scripts": "^2.1.0" 37 | }, 38 | "dependencies": { 39 | "kuromojin": "^1.3.1", 40 | "morpheme-match-textlint": "^2.0.0", 41 | "textlint-rule-prh": "^5.2.1" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/dictionary.js: -------------------------------------------------------------------------------- 1 | module.exports = [ 2 | // Rule #1 3 | { 4 | "message": "おれ->俺 代名詞は漢字。「俺」は常用漢字(H22年~)", 5 | "expected": "俺", 6 | "tokens": [ 7 | { 8 | "surface_form": "おれ", 9 | "pos": "名詞", 10 | "pos_detail_1": "代名詞", 11 | "pos_detail_2": "一般", 12 | "pos_detail_3": "*", 13 | "conjugated_type": "*", 14 | "conjugated_form": "*", 15 | "basic_form": "おれ", 16 | "reading": "オレ", 17 | "pronunciation": "オレ" 18 | } 19 | ] 20 | }, 21 | // Rule #2 22 | { 23 | "message": "かれ->彼 代名詞は漢字。", 24 | "expected": "彼", 25 | "tokens": [ 26 | { 27 | "surface_form": "かれ", 28 | "pos": "名詞", 29 | "pos_detail_1": "代名詞", 30 | "pos_detail_2": "一般", 31 | "pos_detail_3": "*", 32 | "conjugated_type": "*", 33 | "conjugated_form": "*", 34 | "basic_form": "かれ", 35 | "reading": "カレ", 36 | "pronunciation": "カレ" 37 | } 38 | ] 39 | }, 40 | // Rule #3 41 | { 42 | "message": "だれ->誰 代名詞は漢字。「誰」は常用漢字(H22年~)", 43 | "expected": "誰", 44 | "tokens": [ 45 | { 46 | "surface_form": "だれ", 47 | "pos": "名詞", 48 | "pos_detail_1": "代名詞", 49 | "pos_detail_2": "一般", 50 | "pos_detail_3": "*", 51 | "conjugated_type": "*", 52 | "conjugated_form": "*", 53 | "basic_form": "だれ", 54 | "reading": "ダレ", 55 | "pronunciation": "ダレ" 56 | } 57 | ] 58 | }, 59 | // Rule #4 60 | { 61 | "message": "なに->何 代名詞は漢字。", 62 | "expected": "何", 63 | "tokens": [ 64 | { 65 | "surface_form": "なに", 66 | "pos": "名詞", 67 | "pos_detail_1": "代名詞", 68 | "pos_detail_2": "一般", 69 | "pos_detail_3": "*", 70 | "conjugated_type": "*", 71 | "conjugated_form": "*", 72 | "basic_form": "なに", 73 | "reading": "ナニ", 74 | "pronunciation": "ナニ" 75 | } 76 | ] 77 | }, 78 | // Rule #5 79 | { 80 | "message": "ぼく->僕 代名詞は漢字。", 81 | "expected": "僕", 82 | "tokens": [ 83 | { 84 | "surface_form": "ぼく", 85 | "pos": "名詞", 86 | "pos_detail_1": "代名詞", 87 | "pos_detail_2": "一般", 88 | "pos_detail_3": "*", 89 | "conjugated_type": "*", 90 | "conjugated_form": "*", 91 | "basic_form": "ぼく", 92 | "reading": "ボク", 93 | "pronunciation": "ボク" 94 | } 95 | ] 96 | }, 97 | // Rule #6 98 | { 99 | "message": "わたし->私 代名詞は漢字。", 100 | "expected": "私", 101 | "tokens": [ 102 | { 103 | "surface_form": "わたし", 104 | "pos": "名詞", 105 | "pos_detail_1": "代名詞", 106 | "pos_detail_2": "一般", 107 | "pos_detail_3": "*", 108 | "conjugated_type": "*", 109 | "conjugated_form": "*", 110 | "basic_form": "わたし", 111 | "reading": "ワタシ", 112 | "pronunciation": "ワタシ" 113 | } 114 | ] 115 | }, 116 | // Rule #7 117 | { 118 | "message": "わたくし->私 代名詞は漢字。", 119 | "expected": "私", 120 | "tokens": [ 121 | { 122 | "surface_form": "わたくし", 123 | "pos": "名詞", 124 | "pos_detail_1": "代名詞", 125 | "pos_detail_2": "一般", 126 | "pos_detail_3": "*", 127 | "conjugated_type": "*", 128 | "conjugated_form": "*", 129 | "basic_form": "わたくし", 130 | "reading": "ワタクシ", 131 | "pronunciation": "ワタクシ" 132 | } 133 | ] 134 | }, 135 | // Rule #8 136 | { 137 | "message": "われわれ->我々 代名詞は漢字。", 138 | "expected": "我々", 139 | "tokens": [ 140 | { 141 | "surface_form": "われわれ", 142 | "pos": "名詞", 143 | "pos_detail_1": "代名詞", 144 | "pos_detail_2": "一般", 145 | "pos_detail_3": "*", 146 | "conjugated_type": "*", 147 | "conjugated_form": "*", 148 | "basic_form": "われわれ", 149 | "reading": "ワレワレ", 150 | "pronunciation": "ワレワレ" 151 | } 152 | ] 153 | }, 154 | // Rule #11 155 | { 156 | "message": "あまり->余り 副詞は漢字。", 157 | "expected": "余り", 158 | "tokens": [ 159 | { 160 | "surface_form": "あまり", 161 | "pos": "名詞", 162 | "pos_detail_1": "一般", 163 | "pos_detail_2": "*", 164 | "pos_detail_3": "*", 165 | "conjugated_type": "*", 166 | "conjugated_form": "*", 167 | "basic_form": "あまり", 168 | "reading": "アマリ", 169 | "pronunciation": "アマリ" 170 | } 171 | ] 172 | }, 173 | // Rule #13 174 | { 175 | "message": "おおいに->大いに 副詞は漢字。", 176 | "expected": "大いに", 177 | "tokens": [ 178 | { 179 | "surface_form": "おおいに", 180 | "pos": "副詞", 181 | "pos_detail_1": "一般", 182 | "pos_detail_2": "*", 183 | "pos_detail_3": "*", 184 | "conjugated_type": "*", 185 | "conjugated_form": "*", 186 | "basic_form": "おおいに", 187 | "reading": "オオイニ", 188 | "pronunciation": "オーイニ" 189 | } 190 | ] 191 | }, 192 | // Rule #14 193 | { 194 | "message": "おそらく->恐らく 副詞は漢字。", 195 | "expected": "恐らく", 196 | "tokens": [ 197 | { 198 | "surface_form": "おそらく", 199 | "pos": "副詞", 200 | "pos_detail_1": "一般", 201 | "pos_detail_2": "*", 202 | "pos_detail_3": "*", 203 | "conjugated_type": "*", 204 | "conjugated_form": "*", 205 | "basic_form": "おそらく", 206 | "reading": "オソラク", 207 | "pronunciation": "オソラク" 208 | } 209 | ] 210 | }, 211 | // Rule #16 212 | { 213 | "message": "かならず->必ず 副詞は漢字。", 214 | "expected": "必ず", 215 | "tokens": [ 216 | { 217 | "surface_form": "かならず", 218 | "pos": "副詞", 219 | "pos_detail_1": "一般", 220 | "pos_detail_2": "*", 221 | "pos_detail_3": "*", 222 | "conjugated_type": "*", 223 | "conjugated_form": "*", 224 | "basic_form": "かならず", 225 | "reading": "カナラズ", 226 | "pronunciation": "カナラズ" 227 | } 228 | ] 229 | }, 230 | // Rule #17 231 | { 232 | "message": "かならずしも->必ずしも 副詞は漢字。", 233 | "expected": "必ずしも", 234 | "tokens": [ 235 | { 236 | "surface_form": "かならずしも", 237 | "pos": "副詞", 238 | "pos_detail_1": "一般", 239 | "pos_detail_2": "*", 240 | "pos_detail_3": "*", 241 | "conjugated_type": "*", 242 | "conjugated_form": "*", 243 | "basic_form": "かならずしも", 244 | "reading": "カナラズシモ", 245 | "pronunciation": "カナラズシモ" 246 | } 247 | ] 248 | }, 249 | // Rule #19 250 | { 251 | "message": "きわめて->極めて 副詞は漢字。", 252 | "expected": "極めて", 253 | "tokens": [ 254 | { 255 | "surface_form": "きわめて", 256 | "pos": "副詞", 257 | "pos_detail_1": "一般", 258 | "pos_detail_2": "*", 259 | "pos_detail_3": "*", 260 | "conjugated_type": "*", 261 | "conjugated_form": "*", 262 | "basic_form": "きわめて", 263 | "reading": "キワメテ", 264 | "pronunciation": "キワメテ" 265 | } 266 | ] 267 | }, 268 | // Rule #20 269 | { 270 | "message": "ことに->殊に 副詞は漢字。", 271 | "expected": "殊に", 272 | "tokens": [ 273 | { 274 | "surface_form": "ことに", 275 | "pos": "副詞", 276 | "pos_detail_1": "一般", 277 | "pos_detail_2": "*", 278 | "pos_detail_3": "*", 279 | "conjugated_type": "*", 280 | "conjugated_form": "*", 281 | "basic_form": "ことに", 282 | "reading": "コトニ", 283 | "pronunciation": "コトニ" 284 | } 285 | ] 286 | }, 287 | // Rule #21 288 | { 289 | "message": "さらに->更に 副詞は漢字。", 290 | "expected": "更に", 291 | "tokens": [ 292 | { 293 | "surface_form": "さらに", 294 | "pos": "副詞", 295 | "pos_detail_1": "助詞類接続", 296 | "pos_detail_2": "*", 297 | "pos_detail_3": "*", 298 | "conjugated_type": "*", 299 | "conjugated_form": "*", 300 | "basic_form": "さらに", 301 | "reading": "サラニ", 302 | "pronunciation": "サラニ" 303 | } 304 | ] 305 | }, 306 | // Rule #22 307 | { 308 | "message": "じつに->実に 副詞は漢字。", 309 | "expected": "実に", 310 | "tokens": [ 311 | { 312 | "surface_form": "じつに", 313 | "pos": "副詞", 314 | "pos_detail_1": "一般", 315 | "pos_detail_2": "*", 316 | "pos_detail_3": "*", 317 | "conjugated_type": "*", 318 | "conjugated_form": "*", 319 | "basic_form": "じつに", 320 | "reading": "ジツニ", 321 | "pronunciation": "ジツニ" 322 | } 323 | ] 324 | }, 325 | // Rule #23 326 | { 327 | "message": "すくなくとも->少なくとも 副詞は漢字。", 328 | "expected": "少なくとも", 329 | "tokens": [ 330 | { 331 | "surface_form": "すくなくとも", 332 | "pos": "副詞", 333 | "pos_detail_1": "一般", 334 | "pos_detail_2": "*", 335 | "pos_detail_3": "*", 336 | "conjugated_type": "*", 337 | "conjugated_form": "*", 338 | "basic_form": "すくなくとも", 339 | "reading": "スクナクトモ", 340 | "pronunciation": "スクナクトモ" 341 | } 342 | ] 343 | }, 344 | // Rule #24 345 | { 346 | "message": "すこし->少し 副詞は漢字。", 347 | "expected": "少し", 348 | "tokens": [ 349 | { 350 | "surface_form": "すこし", 351 | "pos": "副詞", 352 | "pos_detail_1": "助詞類接続", 353 | "pos_detail_2": "*", 354 | "pos_detail_3": "*", 355 | "conjugated_type": "*", 356 | "conjugated_form": "*", 357 | "basic_form": "すこし", 358 | "reading": "スコシ", 359 | "pronunciation": "スコシ" 360 | } 361 | ] 362 | }, 363 | // Rule #25 364 | { 365 | "message": "すでに->既に 副詞は漢字。", 366 | "expected": "既に", 367 | "tokens": [ 368 | { 369 | "surface_form": "すでに", 370 | "pos": "副詞", 371 | "pos_detail_1": "一般", 372 | "pos_detail_2": "*", 373 | "pos_detail_3": "*", 374 | "conjugated_type": "*", 375 | "conjugated_form": "*", 376 | "basic_form": "すでに", 377 | "reading": "スデニ", 378 | "pronunciation": "スデニ" 379 | } 380 | ] 381 | }, 382 | // Rule #26 383 | { 384 | "message": "すべて->全て 副詞は漢字。常用漢字表の読み(H22年~)", 385 | "expected": "全て", 386 | "tokens": [ 387 | { 388 | "surface_form": "すべて", 389 | "pos": "名詞", 390 | "pos_detail_1": "副詞可能", 391 | "pos_detail_2": "*", 392 | "pos_detail_3": "*", 393 | "conjugated_type": "*", 394 | "conjugated_form": "*", 395 | "basic_form": "すべて", 396 | "reading": "スベテ", 397 | "pronunciation": "スベテ" 398 | } 399 | ] 400 | }, 401 | // Rule #27 402 | { 403 | "message": "せつに->切に 副詞は漢字。", 404 | "expected": "切に", 405 | "tokens": [ 406 | { 407 | "surface_form": "せつに", 408 | "pos": "副詞", 409 | "pos_detail_1": "一般", 410 | "pos_detail_2": "*", 411 | "pos_detail_3": "*", 412 | "conjugated_type": "*", 413 | "conjugated_form": "*", 414 | "basic_form": "せつに", 415 | "reading": "セツニ", 416 | "pronunciation": "セツニ" 417 | } 418 | ] 419 | }, 420 | // Rule #28 421 | { 422 | "message": "たいして->大して 副詞は漢字。", 423 | "expected": "大して", 424 | "tokens": [ 425 | { 426 | "surface_form": "たいして", 427 | "pos": "副詞", 428 | "pos_detail_1": "一般", 429 | "pos_detail_2": "*", 430 | "pos_detail_3": "*", 431 | "conjugated_type": "*", 432 | "conjugated_form": "*", 433 | "basic_form": "たいして", 434 | "reading": "タイシテ", 435 | "pronunciation": "タイシテ" 436 | } 437 | ] 438 | }, 439 | // Rule #29 440 | { 441 | "message": "たえず->絶えず 副詞は漢字。", 442 | "expected": "絶えず", 443 | "tokens": [ 444 | { 445 | "surface_form": "たえず", 446 | "pos": "副詞", 447 | "pos_detail_1": "一般", 448 | "pos_detail_2": "*", 449 | "pos_detail_3": "*", 450 | "conjugated_type": "*", 451 | "conjugated_form": "*", 452 | "basic_form": "たえず", 453 | "reading": "タエズ", 454 | "pronunciation": "タエズ" 455 | } 456 | ] 457 | }, 458 | // Rule #30 459 | { 460 | "message": "たがいに->互いに 副詞は漢字。", 461 | "expected": "互いに", 462 | "tokens": [ 463 | { 464 | "surface_form": "たがい", 465 | "pos": "動詞", 466 | "pos_detail_1": "自立", 467 | "pos_detail_2": "*", 468 | "pos_detail_3": "*", 469 | "conjugated_type": "五段・ワ行促音便", 470 | "conjugated_form": "連用形", 471 | "basic_form": "たがう", 472 | "reading": "タガイ", 473 | "pronunciation": "タガイ" 474 | }, 475 | { 476 | "surface_form": "に", 477 | "pos": "助詞", 478 | "pos_detail_1": "格助詞", 479 | "pos_detail_2": "一般", 480 | "pos_detail_3": "*", 481 | "conjugated_type": "*", 482 | "conjugated_form": "*", 483 | "basic_form": "に", 484 | "reading": "ニ", 485 | "pronunciation": "ニ" 486 | } 487 | ] 488 | }, 489 | // Rule #31 490 | { 491 | "message": "ただちに->直ちに 副詞は漢字。", 492 | "expected": "直ちに", 493 | "tokens": [ 494 | { 495 | "surface_form": "ただちに", 496 | "pos": "副詞", 497 | "pos_detail_1": "一般", 498 | "pos_detail_2": "*", 499 | "pos_detail_3": "*", 500 | "conjugated_type": "*", 501 | "conjugated_form": "*", 502 | "basic_form": "ただちに", 503 | "reading": "タダチニ", 504 | "pronunciation": "タダチニ" 505 | } 506 | ] 507 | }, 508 | // Rule #32 509 | { 510 | "message": "たとえば->例えば 副詞は漢字。", 511 | "expected": "例えば", 512 | "tokens": [ 513 | { 514 | "surface_form": "たとえば", 515 | "pos": "接続詞", 516 | "pos_detail_1": "*", 517 | "pos_detail_2": "*", 518 | "pos_detail_3": "*", 519 | "conjugated_type": "*", 520 | "conjugated_form": "*", 521 | "basic_form": "たとえば", 522 | "reading": "タトエバ", 523 | "pronunciation": "タトエバ" 524 | } 525 | ] 526 | }, 527 | // Rule #33 528 | { 529 | "message": "ついで->次いで 副詞は漢字。", 530 | "expected": "次いで", 531 | "tokens": [ 532 | { 533 | "surface_form": "ついで", 534 | "pos": "副詞", 535 | "pos_detail_1": "一般", 536 | "pos_detail_2": "*", 537 | "pos_detail_3": "*", 538 | "conjugated_type": "*", 539 | "conjugated_form": "*", 540 | "basic_form": "ついで", 541 | "reading": "ツイデ", 542 | "pronunciation": "ツイデ" 543 | } 544 | ] 545 | }, 546 | // Rule #34 547 | { 548 | "message": "つとめて->努めて 副詞は漢字。", 549 | "expected": "努めて", 550 | "tokens": [ 551 | { 552 | "surface_form": "つとめて", 553 | "pos": "副詞", 554 | "pos_detail_1": "一般", 555 | "pos_detail_2": "*", 556 | "pos_detail_3": "*", 557 | "conjugated_type": "*", 558 | "conjugated_form": "*", 559 | "basic_form": "つとめて", 560 | "reading": "ツトメテ", 561 | "pronunciation": "ツトメテ" 562 | } 563 | ] 564 | }, 565 | // Rule #35 566 | { 567 | "message": "つねに->常に 副詞は漢字。", 568 | "expected": "常に", 569 | "tokens": [ 570 | { 571 | "surface_form": "つねに", 572 | "pos": "副詞", 573 | "pos_detail_1": "一般", 574 | "pos_detail_2": "*", 575 | "pos_detail_3": "*", 576 | "conjugated_type": "*", 577 | "conjugated_form": "*", 578 | "basic_form": "つねに", 579 | "reading": "ツネニ", 580 | "pronunciation": "ツネニ" 581 | } 582 | ] 583 | }, 584 | // Rule #36 585 | { 586 | "message": "とくに->特に 副詞は漢字。", 587 | "expected": "特に", 588 | "tokens": [ 589 | { 590 | "surface_form": "とくに", 591 | "pos": "副詞", 592 | "pos_detail_1": "一般", 593 | "pos_detail_2": "*", 594 | "pos_detail_3": "*", 595 | "conjugated_type": "*", 596 | "conjugated_form": "*", 597 | "basic_form": "とくに", 598 | "reading": "トクニ", 599 | "pronunciation": "トクニ" 600 | } 601 | ] 602 | }, 603 | // Rule #37 604 | { 605 | "message": "とつぜん->突然 副詞は漢字。", 606 | "expected": "突然", 607 | "tokens": [ 608 | { 609 | "surface_form": "とつぜん", 610 | "pos": "副詞", 611 | "pos_detail_1": "一般", 612 | "pos_detail_2": "*", 613 | "pos_detail_3": "*", 614 | "conjugated_type": "*", 615 | "conjugated_form": "*", 616 | "basic_form": "とつぜん", 617 | "reading": "トツゼン", 618 | "pronunciation": "トツゼン" 619 | } 620 | ] 621 | }, 622 | // Rule #38 623 | { 624 | "message": "はじめて->初めて 副詞は漢字。", 625 | "expected": "初めて", 626 | "tokens": [ 627 | { 628 | "surface_form": "はじめて", 629 | "pos": "副詞", 630 | "pos_detail_1": "一般", 631 | "pos_detail_2": "*", 632 | "pos_detail_3": "*", 633 | "conjugated_type": "*", 634 | "conjugated_form": "*", 635 | "basic_form": "はじめて", 636 | "reading": "ハジメテ", 637 | "pronunciation": "ハジメテ" 638 | } 639 | ] 640 | }, 641 | // Rule #39 642 | { 643 | "message": "もっとも->最も 副詞は漢字。", 644 | "expected": "最も", 645 | "tokens": [ 646 | { 647 | "surface_form": "もっとも", 648 | "pos": "副詞", 649 | "pos_detail_1": "一般", 650 | "pos_detail_2": "*", 651 | "pos_detail_3": "*", 652 | "conjugated_type": "*", 653 | "conjugated_form": "*", 654 | "basic_form": "もっとも", 655 | "reading": "モットモ", 656 | "pronunciation": "モットモ" 657 | } 658 | ] 659 | }, 660 | // Rule #40 661 | { 662 | "message": "はたして->果たして 副詞は漢字。", 663 | "expected": "果たして", 664 | "tokens": [ 665 | { 666 | "surface_form": "はたして", 667 | "pos": "副詞", 668 | "pos_detail_1": "一般", 669 | "pos_detail_2": "*", 670 | "pos_detail_3": "*", 671 | "conjugated_type": "*", 672 | "conjugated_form": "*", 673 | "basic_form": "はたして", 674 | "reading": "ハタシテ", 675 | "pronunciation": "ハタシテ" 676 | } 677 | ] 678 | }, 679 | // Rule #41 680 | { 681 | "message": "はなはだ->甚だ 副詞は漢字。", 682 | "expected": "甚だ", 683 | "tokens": [ 684 | { 685 | "surface_form": "はなはだ", 686 | "pos": "副詞", 687 | "pos_detail_1": "一般", 688 | "pos_detail_2": "*", 689 | "pos_detail_3": "*", 690 | "conjugated_type": "*", 691 | "conjugated_form": "*", 692 | "basic_form": "はなはだ", 693 | "reading": "ハナハダ", 694 | "pronunciation": "ハナハダ" 695 | } 696 | ] 697 | }, 698 | // Rule #42 699 | { 700 | "message": "ふたたび->再び 副詞は漢字。", 701 | "expected": "再び", 702 | "tokens": [ 703 | { 704 | "surface_form": "ふたたび", 705 | "pos": "副詞", 706 | "pos_detail_1": "一般", 707 | "pos_detail_2": "*", 708 | "pos_detail_3": "*", 709 | "conjugated_type": "*", 710 | "conjugated_form": "*", 711 | "basic_form": "ふたたび", 712 | "reading": "フタタビ", 713 | "pronunciation": "フタタビ" 714 | } 715 | ] 716 | }, 717 | // Rule #43 718 | { 719 | "message": "まったく->全く 副詞は漢字。", 720 | "expected": "全く", 721 | "tokens": [ 722 | { 723 | "surface_form": "まったく", 724 | "pos": "副詞", 725 | "pos_detail_1": "助詞類接続", 726 | "pos_detail_2": "*", 727 | "pos_detail_3": "*", 728 | "conjugated_type": "*", 729 | "conjugated_form": "*", 730 | "basic_form": "まったく", 731 | "reading": "マッタク", 732 | "pronunciation": "マッタク" 733 | } 734 | ] 735 | }, 736 | // Rule #44 737 | { 738 | "message": "むろん->無論 副詞は漢字。", 739 | "expected": "無論", 740 | "tokens": [ 741 | { 742 | "surface_form": "むろん", 743 | "pos": "副詞", 744 | "pos_detail_1": "一般", 745 | "pos_detail_2": "*", 746 | "pos_detail_3": "*", 747 | "conjugated_type": "*", 748 | "conjugated_form": "*", 749 | "basic_form": "むろん", 750 | "reading": "ムロン", 751 | "pronunciation": "ムロン" 752 | } 753 | ] 754 | }, 755 | // Rule #45 756 | { 757 | "message": "もっぱら->専ら 副詞は漢字。", 758 | "expected": "専ら", 759 | "tokens": [ 760 | { 761 | "surface_form": "もっぱら", 762 | "pos": "副詞", 763 | "pos_detail_1": "一般", 764 | "pos_detail_2": "*", 765 | "pos_detail_3": "*", 766 | "conjugated_type": "*", 767 | "conjugated_form": "*", 768 | "basic_form": "もっぱら", 769 | "reading": "モッパラ", 770 | "pronunciation": "モッパラ" 771 | } 772 | ] 773 | }, 774 | // Rule #46 775 | { 776 | "message": "わずか->僅か 副詞は漢字。「僅」は常用漢字(H22年~)", 777 | "expected": "僅か", 778 | "tokens": [ 779 | { 780 | "surface_form": "わずか", 781 | "pos": "副詞", 782 | "pos_detail_1": "助詞類接続", 783 | "pos_detail_2": "*", 784 | "pos_detail_3": "*", 785 | "conjugated_type": "*", 786 | "conjugated_form": "*", 787 | "basic_form": "わずか", 788 | "reading": "ワズカ", 789 | "pronunciation": "ワズカ" 790 | } 791 | ] 792 | }, 793 | // Rule #47 794 | { 795 | "message": "わりに->割に 副詞は漢字。", 796 | "expected": "割に", 797 | "tokens": [ 798 | { 799 | "surface_form": "わりに", 800 | "pos": "副詞", 801 | "pos_detail_1": "一般", 802 | "pos_detail_2": "*", 803 | "pos_detail_3": "*", 804 | "conjugated_type": "*", 805 | "conjugated_form": "*", 806 | "basic_form": "わりに", 807 | "reading": "ワリニ", 808 | "pronunciation": "ワリニ" 809 | } 810 | ] 811 | }, 812 | // Rule #48 813 | { 814 | "message": "あくる->明くる 連体詞は漢字。", 815 | "expected": "明くる", 816 | "tokens": [ 817 | { 818 | "surface_form": "あくる", 819 | "pos": "連体詞", 820 | "pos_detail_1": "*", 821 | "pos_detail_2": "*", 822 | "pos_detail_3": "*", 823 | "conjugated_type": "*", 824 | "conjugated_form": "*", 825 | "basic_form": "あくる", 826 | "reading": "アクル", 827 | "pronunciation": "アクル" 828 | } 829 | ] 830 | }, 831 | // Rule #49 832 | { 833 | "message": "おおきな->大きな 連体詞は漢字。", 834 | "expected": "大きな", 835 | "tokens": [ 836 | { 837 | "surface_form": "おおきな", 838 | "pos": "連体詞", 839 | "pos_detail_1": "*", 840 | "pos_detail_2": "*", 841 | "pos_detail_3": "*", 842 | "conjugated_type": "*", 843 | "conjugated_form": "*", 844 | "basic_form": "おおきな", 845 | "reading": "オオキナ", 846 | "pronunciation": "オーキナ" 847 | } 848 | ] 849 | }, 850 | // Rule #50 851 | { 852 | "message": "きたる->来る 連体詞は漢字。", 853 | "expected": "来る", 854 | "tokens": [ 855 | { 856 | "surface_form": "きたる", 857 | "pos": "連体詞", 858 | "pos_detail_1": "*", 859 | "pos_detail_2": "*", 860 | "pos_detail_3": "*", 861 | "conjugated_type": "*", 862 | "conjugated_form": "*", 863 | "basic_form": "きたる", 864 | "reading": "キタル", 865 | "pronunciation": "キタル" 866 | } 867 | ] 868 | }, 869 | // Rule #51 870 | { 871 | "message": "さる->去る 連体詞は漢字。", 872 | "expected": "去る", 873 | "tokens": [ 874 | { 875 | "surface_form": "さる", 876 | "pos": "連体詞", 877 | "pos_detail_1": "*", 878 | "pos_detail_2": "*", 879 | "pos_detail_3": "*", 880 | "conjugated_type": "*", 881 | "conjugated_form": "*", 882 | "basic_form": "さる", 883 | "reading": "サル", 884 | "pronunciation": "サル" 885 | } 886 | ] 887 | }, 888 | // Rule #52 889 | { 890 | "message": "ちいさな->小さな 連体詞は漢字。", 891 | "expected": "小さな", 892 | "tokens": [ 893 | { 894 | "surface_form": "ちいさな", 895 | "pos": "連体詞", 896 | "pos_detail_1": "*", 897 | "pos_detail_2": "*", 898 | "pos_detail_3": "*", 899 | "conjugated_type": "*", 900 | "conjugated_form": "*", 901 | "basic_form": "ちいさな", 902 | "reading": "チイサナ", 903 | "pronunciation": "チーサナ" 904 | } 905 | ] 906 | }, 907 | // Rule #53 908 | { 909 | "message": "わが->我が 連体詞は漢字。", 910 | "expected": "我が", 911 | "tokens": [ 912 | { 913 | "surface_form": "わが", 914 | "pos": "連体詞", 915 | "pos_detail_1": "*", 916 | "pos_detail_2": "*", 917 | "pos_detail_3": "*", 918 | "conjugated_type": "*", 919 | "conjugated_form": "*", 920 | "basic_form": "わが", 921 | "reading": "ワガ", 922 | "pronunciation": "ワガ" 923 | } 924 | ] 925 | }, 926 | // Rule #61 927 | { 928 | "message": "ご->御 ただし、仮名が続く場合は「ご」(例:ごもっとも)。", 929 | "expected": "御", 930 | "tokens": [ 931 | { 932 | "surface_form": "ご", 933 | "pos": "接頭詞", 934 | "pos_detail_1": "名詞接続", 935 | "pos_detail_2": "*", 936 | "pos_detail_3": "*", 937 | "conjugated_type": "*", 938 | "conjugated_form": "*", 939 | "basic_form": "ご", 940 | "reading": "ゴ", 941 | "pronunciation": "ゴ" 942 | } 943 | ] 944 | }, 945 | // Rule #63 946 | { 947 | "message": "共->ども 接尾語は仮名。", 948 | "expected": "ども", 949 | "tokens": [ 950 | { 951 | "surface_form": "共", 952 | "pos": "名詞", 953 | "pos_detail_1": "接尾", 954 | "pos_detail_2": "一般", 955 | "pos_detail_3": "*", 956 | "conjugated_type": "*", 957 | "conjugated_form": "*", 958 | "basic_form": "共", 959 | "reading": "ドモ", 960 | "pronunciation": "ドモ" 961 | } 962 | ] 963 | }, 964 | // Rule #65 965 | { 966 | "message": "味->み 接尾語は仮名。", 967 | "expected": "み", 968 | "tokens": [ 969 | { 970 | "surface_form": "味", 971 | "pos": "名詞", 972 | "pos_detail_1": "接尾", 973 | "pos_detail_2": "一般", 974 | "pos_detail_3": "*", 975 | "conjugated_type": "*", 976 | "conjugated_form": "*", 977 | "basic_form": "味", 978 | "reading": "ミ", 979 | "pronunciation": "ミ" 980 | } 981 | ] 982 | }, 983 | // Rule #65.1 984 | { 985 | "message": "弱味->弱み 接尾語は仮名。", 986 | "expected": "弱み", 987 | "tokens": [ 988 | { 989 | "surface_form": "弱味", 990 | "pos": "名詞", 991 | "pos_detail_1": "一般", 992 | "pos_detail_2": "*", 993 | "pos_detail_3": "*", 994 | "conjugated_type": "*", 995 | "conjugated_form": "*", 996 | "basic_form": "弱味", 997 | "reading": "ヨワミ", 998 | "pronunciation": "ヨワミ" 999 | } 1000 | ] 1001 | }, 1002 | // Rule #66.1 1003 | { 1004 | "message": "少な目->少なめ 接尾語は仮名。", 1005 | "expected": "少なめ", 1006 | "tokens": [ 1007 | { 1008 | "surface_form": "少な目", 1009 | "pos": "名詞", 1010 | "pos_detail_1": "形容動詞語幹", 1011 | "pos_detail_2": "*", 1012 | "pos_detail_3": "*", 1013 | "conjugated_type": "*", 1014 | "conjugated_form": "*", 1015 | "basic_form": "少な目", 1016 | "reading": "スクナメ", 1017 | "pronunciation": "スクナメ" 1018 | } 1019 | ] 1020 | }, 1021 | // Rule #65.2 1022 | { 1023 | "message": "強味->強み 接尾語は仮名。", 1024 | "expected": "強み", 1025 | "tokens": [ 1026 | { 1027 | "surface_form": "強味", 1028 | "pos": "名詞", 1029 | "pos_detail_1": "一般", 1030 | "pos_detail_2": "*", 1031 | "pos_detail_3": "*", 1032 | "conjugated_type": "*", 1033 | "conjugated_form": "*", 1034 | "basic_form": "強味", 1035 | "reading": "ツヨミ", 1036 | "pronunciation": "ツヨミ" 1037 | } 1038 | ] 1039 | }, 1040 | // Rule #66.2 1041 | { 1042 | "message": "多目->多め 接尾語は仮名。", 1043 | "expected": "多め", 1044 | "tokens": [ 1045 | { 1046 | "surface_form": "多目", 1047 | "pos": "名詞", 1048 | "pos_detail_1": "形容動詞語幹", 1049 | "pos_detail_2": "*", 1050 | "pos_detail_3": "*", 1051 | "conjugated_type": "*", 1052 | "conjugated_form": "*", 1053 | "basic_form": "多目", 1054 | "reading": "オオメ", 1055 | "pronunciation": "オーメ" 1056 | } 1057 | ] 1058 | }, 1059 | // Rule #71 1060 | { 1061 | "message": "追って->おって 接続詞は仮名。", 1062 | "expected": "おって", 1063 | "tokens": [ 1064 | { 1065 | "surface_form": "追って", 1066 | "pos": "接続詞", 1067 | "pos_detail_1": "*", 1068 | "pos_detail_2": "*", 1069 | "pos_detail_3": "*", 1070 | "conjugated_type": "*", 1071 | "conjugated_form": "*", 1072 | "basic_form": "追って", 1073 | "reading": "オッテ", 1074 | "pronunciation": "オッテ" 1075 | } 1076 | ] 1077 | }, 1078 | // Rule #73 1079 | { 1080 | "message": "従って->したがって 接続詞は仮名。", 1081 | "expected": "したがって", 1082 | "tokens": [ 1083 | { 1084 | "surface_form": "従って", 1085 | "pos": "接続詞", 1086 | "pos_detail_1": "*", 1087 | "pos_detail_2": "*", 1088 | "pos_detail_3": "*", 1089 | "conjugated_type": "*", 1090 | "conjugated_form": "*", 1091 | "basic_form": "従って", 1092 | "reading": "シタガッテ", 1093 | "pronunciation": "シタガッテ" 1094 | } 1095 | ] 1096 | }, 1097 | // Rule #74 1098 | { 1099 | "message": "但し->ただし 接続詞は仮名。", 1100 | "expected": "ただし", 1101 | "tokens": [ 1102 | { 1103 | "surface_form": "但し", 1104 | "pos": "接続詞", 1105 | "pos_detail_1": "*", 1106 | "pos_detail_2": "*", 1107 | "pos_detail_3": "*", 1108 | "conjugated_type": "*", 1109 | "conjugated_form": "*", 1110 | "basic_form": "但し", 1111 | "reading": "タダシ", 1112 | "pronunciation": "タダシ" 1113 | } 1114 | ] 1115 | }, 1116 | // Rule #78 1117 | { 1118 | "message": "又->また 接続詞は仮名。", 1119 | "expected": "また", 1120 | "tokens": [ 1121 | { 1122 | "surface_form": "又", 1123 | "pos": "接続詞", 1124 | "pos_detail_1": "*", 1125 | "pos_detail_2": "*", 1126 | "pos_detail_3": "*", 1127 | "conjugated_type": "*", 1128 | "conjugated_form": "*", 1129 | "basic_form": "又", 1130 | "reading": "マタ", 1131 | "pronunciation": "マタ" 1132 | } 1133 | ] 1134 | }, 1135 | // Rule #79 1136 | { 1137 | "message": "故に->ゆえに 接続詞は仮名。", 1138 | "expected": "ゆえに", 1139 | "tokens": [ 1140 | { 1141 | "surface_form": "故に", 1142 | "pos": "接続詞", 1143 | "pos_detail_1": "*", 1144 | "pos_detail_2": "*", 1145 | "pos_detail_3": "*", 1146 | "conjugated_type": "*", 1147 | "conjugated_form": "*", 1148 | "basic_form": "故に", 1149 | "reading": "ユエニ", 1150 | "pronunciation": "ユエニ" 1151 | } 1152 | ] 1153 | }, 1154 | // Rule #80 1155 | { 1156 | "message": "および->及び ", 1157 | "expected": "及び", 1158 | "tokens": [ 1159 | { 1160 | "surface_form": "および", 1161 | "pos": "接続詞", 1162 | "pos_detail_1": "*", 1163 | "pos_detail_2": "*", 1164 | "pos_detail_3": "*", 1165 | "conjugated_type": "*", 1166 | "conjugated_form": "*", 1167 | "basic_form": "および", 1168 | "reading": "オヨビ", 1169 | "pronunciation": "オヨビ" 1170 | } 1171 | ] 1172 | }, 1173 | // Rule #81 1174 | { 1175 | "message": "ならびに->並びに ", 1176 | "expected": "並びに", 1177 | "tokens": [ 1178 | { 1179 | "surface_form": "ならびに", 1180 | "pos": "接続詞", 1181 | "pos_detail_1": "*", 1182 | "pos_detail_2": "*", 1183 | "pos_detail_3": "*", 1184 | "conjugated_type": "*", 1185 | "conjugated_form": "*", 1186 | "basic_form": "ならびに", 1187 | "reading": "ナラビニ", 1188 | "pronunciation": "ナラビニ" 1189 | } 1190 | ] 1191 | }, 1192 | // Rule #82 1193 | { 1194 | "message": "または->又は ", 1195 | "expected": "又は", 1196 | "tokens": [ 1197 | { 1198 | "surface_form": "または", 1199 | "pos": "接続詞", 1200 | "pos_detail_1": "*", 1201 | "pos_detail_2": "*", 1202 | "pos_detail_3": "*", 1203 | "conjugated_type": "*", 1204 | "conjugated_form": "*", 1205 | "basic_form": "または", 1206 | "reading": "マタハ", 1207 | "pronunciation": "マタワ" 1208 | } 1209 | ] 1210 | }, 1211 | // Rule #83 1212 | { 1213 | "message": "もしくは->若しくは ", 1214 | "expected": "若しくは", 1215 | "tokens": [ 1216 | { 1217 | "surface_form": "もしくは", 1218 | "pos": "接続詞", 1219 | "pos_detail_1": "*", 1220 | "pos_detail_2": "*", 1221 | "pos_detail_3": "*", 1222 | "conjugated_type": "*", 1223 | "conjugated_form": "*", 1224 | "basic_form": "もしくは", 1225 | "reading": "モシクハ", 1226 | "pronunciation": "モシクワ" 1227 | } 1228 | ] 1229 | }, 1230 | // Rule #91 1231 | { 1232 | "message": "無い->ない 助動詞は仮名。", 1233 | "expected": "ない", 1234 | "tokens": [ 1235 | { 1236 | "surface_form": "無い", 1237 | "pos": "助動詞", 1238 | "pos_detail_1": "*", 1239 | "pos_detail_2": "*", 1240 | "pos_detail_3": "*", 1241 | "conjugated_type": "形容詞・イ段", 1242 | "conjugated_form": "基本形", 1243 | "basic_form": "無い", 1244 | "reading": "ナイ", 1245 | "pronunciation": "ナイ" 1246 | } 1247 | ] 1248 | }, 1249 | // Rule #92 1250 | { 1251 | "message": "様->よう 助詞は仮名。", 1252 | "expected": "よう", 1253 | "tokens": [ 1254 | { 1255 | "surface_form": "様", 1256 | "pos": "名詞", 1257 | "pos_detail_1": "非自立", 1258 | "pos_detail_2": "助動詞語幹", 1259 | "pos_detail_3": "*", 1260 | "conjugated_type": "*", 1261 | "conjugated_form": "*", 1262 | "basic_form": "様", 1263 | "reading": "ヨウ", 1264 | "pronunciation": "ヨー" 1265 | } 1266 | ] 1267 | }, 1268 | // Rule #93 1269 | { 1270 | "message": "位->くらい 助詞は仮名。", 1271 | "expected": "くらい", 1272 | "tokens": [ 1273 | { 1274 | "surface_form": "位", 1275 | "pos": "名詞", 1276 | "pos_detail_1": "一般", 1277 | "pos_detail_2": "*", 1278 | "pos_detail_3": "*", 1279 | "conjugated_type": "*", 1280 | "conjugated_form": "*", 1281 | "basic_form": "位", 1282 | "reading": "クライ", 1283 | "pronunciation": "クライ" 1284 | } 1285 | ] 1286 | }, 1287 | // Rule #95 1288 | { 1289 | "message": "程->ほど 助詞は仮名。", 1290 | "expected": "ほど", 1291 | "tokens": [ 1292 | { 1293 | "surface_form": "程", 1294 | "pos": "名詞", 1295 | "pos_detail_1": "非自立", 1296 | "pos_detail_2": "一般", 1297 | "pos_detail_3": "*", 1298 | "conjugated_type": "*", 1299 | "conjugated_form": "*", 1300 | "basic_form": "程", 1301 | "reading": "ホド", 1302 | "pronunciation": "ホド" 1303 | } 1304 | ] 1305 | }, 1306 | // Rule #101.1 1307 | { 1308 | "message": "有る->ある ", 1309 | "expected": "ある", 1310 | "tokens": [ 1311 | { 1312 | "surface_form": "有る", 1313 | "pos": "動詞", 1314 | "pos_detail_1": "自立", 1315 | "pos_detail_2": "*", 1316 | "pos_detail_3": "*", 1317 | "conjugated_type": "五段・ラ行", 1318 | "conjugated_form": "基本形", 1319 | "basic_form": "有る", 1320 | "reading": "アル", 1321 | "pronunciation": "アル" 1322 | } 1323 | ] 1324 | }, 1325 | // Rule #101.2 1326 | { 1327 | "message": "有っ->あっ ", 1328 | "expected": "あっ", 1329 | "tokens": [ 1330 | { 1331 | "surface_form": "有っ", 1332 | "pos": "動詞", 1333 | "pos_detail_1": "自立", 1334 | "pos_detail_2": "*", 1335 | "pos_detail_3": "*", 1336 | "conjugated_type": "五段・ラ行", 1337 | "conjugated_form": "連用タ接続", 1338 | "basic_form": "有る", 1339 | "reading": "アッ", 1340 | "pronunciation": "アッ" 1341 | } 1342 | ] 1343 | }, 1344 | // Rule #101.3 1345 | { 1346 | "message": "有り->あり ", 1347 | "expected": "あり", 1348 | "tokens": [ 1349 | { 1350 | "surface_form": "有り", 1351 | "pos": "動詞", 1352 | "pos_detail_1": "自立", 1353 | "pos_detail_2": "*", 1354 | "pos_detail_3": "*", 1355 | "conjugated_type": "五段・ラ行", 1356 | "conjugated_form": "連用形", 1357 | "basic_form": "有る", 1358 | "reading": "アリ", 1359 | "pronunciation": "アリ" 1360 | } 1361 | ] 1362 | }, 1363 | // Rule #101.4 1364 | { 1365 | "message": "有れ->あれ ", 1366 | "expected": "あれ", 1367 | "tokens": [ 1368 | { 1369 | "surface_form": "有れ", 1370 | "pos": "動詞", 1371 | "pos_detail_1": "自立", 1372 | "pos_detail_2": "*", 1373 | "pos_detail_3": "*", 1374 | "conjugated_type": "五段・ラ行", 1375 | "conjugated_form": "仮定形", 1376 | "basic_form": "有る", 1377 | "reading": "アレ", 1378 | "pronunciation": "アレ" 1379 | } 1380 | ] 1381 | }, 1382 | // Rule #101.5 1383 | { 1384 | "message": "有ろ->あろ ", 1385 | "expected": "あろ", 1386 | "tokens": [ 1387 | { 1388 | "surface_form": "有ろ", 1389 | "pos": "動詞", 1390 | "pos_detail_1": "自立", 1391 | "pos_detail_2": "*", 1392 | "pos_detail_3": "*", 1393 | "conjugated_type": "五段・ラ行", 1394 | "conjugated_form": "未然ウ接続", 1395 | "basic_form": "有る", 1396 | "reading": "アロ", 1397 | "pronunciation": "アロ" 1398 | } 1399 | ] 1400 | }, 1401 | // Rule #102.1 1402 | { 1403 | "message": "居る->いる ", 1404 | "expected": "いる", 1405 | "tokens": [ 1406 | { 1407 | "surface_form": "居る", 1408 | "pos": "動詞", 1409 | "pos_detail_1": "自立", 1410 | "pos_detail_2": "*", 1411 | "pos_detail_3": "*", 1412 | "conjugated_type": "一段", 1413 | "conjugated_form": "基本形", 1414 | "basic_form": "居る", 1415 | "reading": "イル", 1416 | "pronunciation": "イル" 1417 | } 1418 | ] 1419 | }, 1420 | // Rule #102.2 1421 | { 1422 | "message": "居->い ", 1423 | "expected": "い", 1424 | "tokens": [ 1425 | { 1426 | "surface_form": "居", 1427 | "pos": "動詞", 1428 | "pos_detail_1": "自立", 1429 | "pos_detail_2": "*", 1430 | "pos_detail_3": "*", 1431 | "conjugated_type": "一段", 1432 | "conjugated_form": "未然形", 1433 | "basic_form": "居る", 1434 | "reading": "イ", 1435 | "pronunciation": "イ" 1436 | } 1437 | ] 1438 | }, 1439 | // Rule #102.3 1440 | { 1441 | "message": "居れ->いれ ", 1442 | "expected": "いれ", 1443 | "tokens": [ 1444 | { 1445 | "surface_form": "居れ", 1446 | "pos": "動詞", 1447 | "pos_detail_1": "自立", 1448 | "pos_detail_2": "*", 1449 | "pos_detail_3": "*", 1450 | "conjugated_type": "一段", 1451 | "conjugated_form": "仮定形", 1452 | "basic_form": "居る", 1453 | "reading": "イレ", 1454 | "pronunciation": "イレ" 1455 | } 1456 | ] 1457 | }, 1458 | // Rule #102.4 1459 | { 1460 | "message": "居よ->いよ ", 1461 | "expected": "いよ", 1462 | "tokens": [ 1463 | { 1464 | "surface_form": "居よ", 1465 | "pos": "動詞", 1466 | "pos_detail_1": "自立", 1467 | "pos_detail_2": "*", 1468 | "pos_detail_3": "*", 1469 | "conjugated_type": "一段", 1470 | "conjugated_form": "未然ウ接続", 1471 | "basic_form": "居る", 1472 | "reading": "イヨ", 1473 | "pronunciation": "イヨ" 1474 | } 1475 | ] 1476 | }, 1477 | // Rule #103 1478 | { 1479 | "message": "事->こと (仮名)~ことがある。(漢字)事を起こす。", 1480 | "expected": "こと", 1481 | "tokens": [ 1482 | { 1483 | "surface_form": "事", 1484 | "pos": "名詞", 1485 | "pos_detail_1": "非自立", 1486 | "pos_detail_2": "一般", 1487 | "pos_detail_3": "*", 1488 | "conjugated_type": "*", 1489 | "conjugated_form": "*", 1490 | "basic_form": "事", 1491 | "reading": "コト", 1492 | "pronunciation": "コト" 1493 | } 1494 | ] 1495 | }, 1496 | // Rule #104.1 1497 | { 1498 | "message": "出来る->できる ", 1499 | "expected": "できる", 1500 | "tokens": [ 1501 | { 1502 | "surface_form": "出来る", 1503 | "pos": "動詞", 1504 | "pos_detail_1": "自立", 1505 | "pos_detail_2": "*", 1506 | "pos_detail_3": "*", 1507 | "conjugated_type": "一段", 1508 | "conjugated_form": "基本形", 1509 | "basic_form": "出来る", 1510 | "reading": "デキル", 1511 | "pronunciation": "デキル" 1512 | } 1513 | ] 1514 | }, 1515 | // Rule #104.2 1516 | { 1517 | "message": "出来->でき ", 1518 | "expected": "でき", 1519 | "tokens": [ 1520 | { 1521 | "surface_form": "出来", 1522 | "pos": "動詞", 1523 | "pos_detail_1": "自立", 1524 | "pos_detail_2": "*", 1525 | "pos_detail_3": "*", 1526 | "conjugated_type": "一段", 1527 | "conjugated_form": "未然形", 1528 | "basic_form": "出来る", 1529 | "reading": "デキ", 1530 | "pronunciation": "デキ" 1531 | } 1532 | ] 1533 | }, 1534 | // Rule #104.3 1535 | { 1536 | "message": "出来れ->できれ ", 1537 | "expected": "できれ", 1538 | "tokens": [ 1539 | { 1540 | "surface_form": "出来れ", 1541 | "pos": "動詞", 1542 | "pos_detail_1": "自立", 1543 | "pos_detail_2": "*", 1544 | "pos_detail_3": "*", 1545 | "conjugated_type": "一段", 1546 | "conjugated_form": "仮定形", 1547 | "basic_form": "出来る", 1548 | "reading": "デキレ", 1549 | "pronunciation": "デキレ" 1550 | } 1551 | ] 1552 | }, 1553 | // Rule #105.2 1554 | { 1555 | "message": "通り->どおり (仮名)従来どおり。(漢字)けやき大通り。", 1556 | "expected": "どおり", 1557 | "tokens": [ 1558 | { 1559 | "surface_form": "通り", 1560 | "pos": "名詞", 1561 | "pos_detail_1": "接尾", 1562 | "pos_detail_2": "一般", 1563 | "pos_detail_3": "*", 1564 | "conjugated_type": "*", 1565 | "conjugated_form": "*", 1566 | "basic_form": "通り", 1567 | "reading": "ドオリ", 1568 | "pronunciation": "ドーリ" 1569 | } 1570 | ] 1571 | }, 1572 | // Rule #106 1573 | { 1574 | "message": "時->とき 「時」は時点を表す。「とき」は条件を表す。", 1575 | "expected": "とき", 1576 | "tokens": [ 1577 | { 1578 | "surface_form": "とき", 1579 | "pos": "名詞", 1580 | "pos_detail_1": "非自立", 1581 | "pos_detail_2": "副詞可能", 1582 | "pos_detail_3": "*", 1583 | "conjugated_type": "*", 1584 | "conjugated_form": "*", 1585 | "basic_form": "とき", 1586 | "reading": "トキ", 1587 | "pronunciation": "トキ" 1588 | } 1589 | ] 1590 | }, 1591 | // Rule #107 1592 | { 1593 | "message": "所->ところ ", 1594 | "expected": "ところ", 1595 | "tokens": [ 1596 | { 1597 | "surface_form": "ところ", 1598 | "pos": "名詞", 1599 | "pos_detail_1": "非自立", 1600 | "pos_detail_2": "副詞可能", 1601 | "pos_detail_3": "*", 1602 | "conjugated_type": "*", 1603 | "conjugated_form": "*", 1604 | "basic_form": "ところ", 1605 | "reading": "トコロ", 1606 | "pronunciation": "トコロ" 1607 | } 1608 | ] 1609 | }, 1610 | // Rule #108 1611 | { 1612 | "message": "と共に->とともに ", 1613 | "expected": "とともに", 1614 | "tokens": [ 1615 | { 1616 | "surface_form": "と共に", 1617 | "pos": "助詞", 1618 | "pos_detail_1": "格助詞", 1619 | "pos_detail_2": "連語", 1620 | "pos_detail_3": "*", 1621 | "conjugated_type": "*", 1622 | "conjugated_form": "*", 1623 | "basic_form": "と共に", 1624 | "reading": "トトモニ", 1625 | "pronunciation": "トトモニ" 1626 | } 1627 | ] 1628 | }, 1629 | // Rule #109.1 1630 | { 1631 | "message": "無い->ない ", 1632 | "expected": "ない", 1633 | "tokens": [ 1634 | { 1635 | "surface_form": "無い", 1636 | "pos": "形容詞", 1637 | "pos_detail_1": "自立", 1638 | "pos_detail_2": "*", 1639 | "pos_detail_3": "*", 1640 | "conjugated_type": "形容詞・アウオ段", 1641 | "conjugated_form": "基本形", 1642 | "basic_form": "無い", 1643 | "reading": "ナイ", 1644 | "pronunciation": "ナイ" 1645 | } 1646 | ] 1647 | }, 1648 | // Rule #109.2 1649 | { 1650 | "message": "無かっ->なかっ ", 1651 | "expected": "なかっ", 1652 | "tokens": [ 1653 | { 1654 | "surface_form": "無かっ", 1655 | "pos": "形容詞", 1656 | "pos_detail_1": "自立", 1657 | "pos_detail_2": "*", 1658 | "pos_detail_3": "*", 1659 | "conjugated_type": "形容詞・アウオ段", 1660 | "conjugated_form": "連用タ接続", 1661 | "basic_form": "無い", 1662 | "reading": "ナカッ", 1663 | "pronunciation": "ナカッ" 1664 | } 1665 | ] 1666 | }, 1667 | // Rule #109.3 1668 | { 1669 | "message": "無く->なく ", 1670 | "expected": "なく", 1671 | "tokens": [ 1672 | { 1673 | "surface_form": "無く", 1674 | "pos": "形容詞", 1675 | "pos_detail_1": "自立", 1676 | "pos_detail_2": "*", 1677 | "pos_detail_3": "*", 1678 | "conjugated_type": "形容詞・アウオ段", 1679 | "conjugated_form": "連用テ接続", 1680 | "basic_form": "無い", 1681 | "reading": "ナク", 1682 | "pronunciation": "ナク" 1683 | } 1684 | ] 1685 | }, 1686 | // Rule #109.4 1687 | { 1688 | "message": "無けれ->なけれ ", 1689 | "expected": "なけれ", 1690 | "tokens": [ 1691 | { 1692 | "surface_form": "無けれ", 1693 | "pos": "形容詞", 1694 | "pos_detail_1": "自立", 1695 | "pos_detail_2": "*", 1696 | "pos_detail_3": "*", 1697 | "conjugated_type": "形容詞・アウオ段", 1698 | "conjugated_form": "仮定形", 1699 | "basic_form": "無い", 1700 | "reading": "ナケレ", 1701 | "pronunciation": "ナケレ" 1702 | } 1703 | ] 1704 | }, 1705 | // Rule #110.1 1706 | { 1707 | "message": "成る->なる ", 1708 | "expected": "なる", 1709 | "tokens": [ 1710 | { 1711 | "surface_form": "成る", 1712 | "pos": "動詞", 1713 | "pos_detail_1": "自立", 1714 | "pos_detail_2": "*", 1715 | "pos_detail_3": "*", 1716 | "conjugated_type": "五段・ラ行", 1717 | "conjugated_form": "基本形", 1718 | "basic_form": "成る", 1719 | "reading": "ナル", 1720 | "pronunciation": "ナル" 1721 | } 1722 | ] 1723 | }, 1724 | // Rule #110.2 1725 | { 1726 | "message": "成ら->なら ", 1727 | "expected": "なら", 1728 | "tokens": [ 1729 | { 1730 | "surface_form": "成ら", 1731 | "pos": "動詞", 1732 | "pos_detail_1": "自立", 1733 | "pos_detail_2": "*", 1734 | "pos_detail_3": "*", 1735 | "conjugated_type": "五段・ラ行", 1736 | "conjugated_form": "未然形", 1737 | "basic_form": "成る", 1738 | "reading": "ナラ", 1739 | "pronunciation": "ナラ" 1740 | } 1741 | ] 1742 | }, 1743 | // Rule #110.3 1744 | { 1745 | "message": "成り->なり ", 1746 | "expected": "なり", 1747 | "tokens": [ 1748 | { 1749 | "surface_form": "成り", 1750 | "pos": "動詞", 1751 | "pos_detail_1": "自立", 1752 | "pos_detail_2": "*", 1753 | "pos_detail_3": "*", 1754 | "conjugated_type": "五段・ラ行", 1755 | "conjugated_form": "連用形", 1756 | "basic_form": "成る", 1757 | "reading": "ナリ", 1758 | "pronunciation": "ナリ" 1759 | } 1760 | ] 1761 | }, 1762 | // Rule #110.4 1763 | { 1764 | "message": "成っ->なっ ", 1765 | "expected": "なっ", 1766 | "tokens": [ 1767 | { 1768 | "surface_form": "成っ", 1769 | "pos": "動詞", 1770 | "pos_detail_1": "自立", 1771 | "pos_detail_2": "*", 1772 | "pos_detail_3": "*", 1773 | "conjugated_type": "五段・ラ行", 1774 | "conjugated_form": "連用タ接続", 1775 | "basic_form": "成る", 1776 | "reading": "ナッ", 1777 | "pronunciation": "ナッ" 1778 | } 1779 | ] 1780 | }, 1781 | // Rule #110.5 1782 | { 1783 | "message": "成れ->なれ ", 1784 | "expected": "なれ", 1785 | "tokens": [ 1786 | { 1787 | "surface_form": "成れ", 1788 | "pos": "動詞", 1789 | "pos_detail_1": "自立", 1790 | "pos_detail_2": "*", 1791 | "pos_detail_3": "*", 1792 | "conjugated_type": "五段・ラ行", 1793 | "conjugated_form": "仮定形", 1794 | "basic_form": "成る", 1795 | "reading": "ナレ", 1796 | "pronunciation": "ナレ" 1797 | } 1798 | ] 1799 | }, 1800 | // Rule #110.6 1801 | { 1802 | "message": "成ろ->なろ ", 1803 | "expected": "なろ", 1804 | "tokens": [ 1805 | { 1806 | "surface_form": "成ろ", 1807 | "pos": "動詞", 1808 | "pos_detail_1": "自立", 1809 | "pos_detail_2": "*", 1810 | "pos_detail_3": "*", 1811 | "conjugated_type": "五段・ラ行", 1812 | "conjugated_form": "未然ウ接続", 1813 | "basic_form": "成る", 1814 | "reading": "ナロ", 1815 | "pronunciation": "ナロ" 1816 | } 1817 | ] 1818 | }, 1819 | // Rule #111 1820 | { 1821 | "message": "他->ほか ", 1822 | "expected": "ほか", 1823 | "tokens": [ 1824 | { 1825 | "surface_form": "他", 1826 | "pos": "名詞", 1827 | "pos_detail_1": "非自立", 1828 | "pos_detail_2": "副詞可能", 1829 | "pos_detail_3": "*", 1830 | "conjugated_type": "*", 1831 | "conjugated_form": "*", 1832 | "basic_form": "他", 1833 | "reading": "ホカ", 1834 | "pronunciation": "ホカ" 1835 | } 1836 | ] 1837 | }, 1838 | // Rule #112 1839 | { 1840 | "message": "物->もの ", 1841 | "expected": "もの", 1842 | "tokens": [ 1843 | { 1844 | "surface_form": "物", 1845 | "pos": "名詞", 1846 | "pos_detail_1": "非自立", 1847 | "pos_detail_2": "一般", 1848 | "pos_detail_3": "*", 1849 | "conjugated_type": "*", 1850 | "conjugated_form": "*", 1851 | "basic_form": "物", 1852 | "reading": "モノ", 1853 | "pronunciation": "モノ" 1854 | } 1855 | ] 1856 | }, 1857 | // Rule #113 1858 | { 1859 | "message": "故->ゆえ ", 1860 | "expected": "ゆえ", 1861 | "tokens": [ 1862 | { 1863 | "surface_form": "故", 1864 | "pos": "名詞", 1865 | "pos_detail_1": "非自立", 1866 | "pos_detail_2": "副詞可能", 1867 | "pos_detail_3": "*", 1868 | "conjugated_type": "*", 1869 | "conjugated_form": "*", 1870 | "basic_form": "故", 1871 | "reading": "ユエ", 1872 | "pronunciation": "ユエ" 1873 | } 1874 | ] 1875 | }, 1876 | // Rule #114 1877 | { 1878 | "message": "訳->わけ ", 1879 | "expected": "わけ", 1880 | "tokens": [ 1881 | { 1882 | "surface_form": "訳", 1883 | "pos": "名詞", 1884 | "pos_detail_1": "非自立", 1885 | "pos_detail_2": "一般", 1886 | "pos_detail_3": "*", 1887 | "conjugated_type": "*", 1888 | "conjugated_form": "*", 1889 | "basic_form": "訳", 1890 | "reading": "ワケ", 1891 | "pronunciation": "ワケ" 1892 | } 1893 | ] 1894 | }, 1895 | // Rule #131 1896 | { 1897 | "message": "明け渡し->明渡し 動詞の場合、修正しない。", 1898 | "expected": "明渡し", 1899 | "tokens": [ 1900 | { 1901 | "surface_form": "明け渡し", 1902 | "pos": "名詞", 1903 | "pos_detail_1": "一般", 1904 | "pos_detail_2": "*", 1905 | "pos_detail_3": "*", 1906 | "conjugated_type": "*", 1907 | "conjugated_form": "*", 1908 | "basic_form": "明け渡し", 1909 | "reading": "アケワタシ", 1910 | "pronunciation": "アケワタシ" 1911 | } 1912 | ] 1913 | }, 1914 | // Rule #133 1915 | { 1916 | "message": "言い渡し->言渡し 動詞の場合、修正しない。", 1917 | "expected": "言渡し", 1918 | "tokens": [ 1919 | { 1920 | "surface_form": "言い渡し", 1921 | "pos": "名詞", 1922 | "pos_detail_1": "一般", 1923 | "pos_detail_2": "*", 1924 | "pos_detail_3": "*", 1925 | "conjugated_type": "*", 1926 | "conjugated_form": "*", 1927 | "basic_form": "言い渡し", 1928 | "reading": "イイワタシ", 1929 | "pronunciation": "イーワタシ" 1930 | } 1931 | ] 1932 | }, 1933 | // Rule #134 1934 | { 1935 | "message": "入れ替え->入替え 動詞の場合、修正しない。", 1936 | "expected": "入替え", 1937 | "tokens": [ 1938 | { 1939 | "surface_form": "入れ替え", 1940 | "pos": "名詞", 1941 | "pos_detail_1": "一般", 1942 | "pos_detail_2": "*", 1943 | "pos_detail_3": "*", 1944 | "conjugated_type": "*", 1945 | "conjugated_form": "*", 1946 | "basic_form": "入れ替え", 1947 | "reading": "イレカエ", 1948 | "pronunciation": "イレカエ" 1949 | } 1950 | ] 1951 | }, 1952 | // Rule #135 1953 | { 1954 | "message": "植え付け->植付け 動詞の場合、修正しない。", 1955 | "expected": "植付け", 1956 | "tokens": [ 1957 | { 1958 | "surface_form": "植え付け", 1959 | "pos": "名詞", 1960 | "pos_detail_1": "一般", 1961 | "pos_detail_2": "*", 1962 | "pos_detail_3": "*", 1963 | "conjugated_type": "*", 1964 | "conjugated_form": "*", 1965 | "basic_form": "植え付け", 1966 | "reading": "ウエツケ", 1967 | "pronunciation": "ウエツケ" 1968 | } 1969 | ] 1970 | }, 1971 | // Rule #137 1972 | { 1973 | "message": "受け入れ->受入れ 動詞の場合、修正しない。", 1974 | "expected": "受入れ", 1975 | "tokens": [ 1976 | { 1977 | "surface_form": "受け入れ", 1978 | "pos": "名詞", 1979 | "pos_detail_1": "一般", 1980 | "pos_detail_2": "*", 1981 | "pos_detail_3": "*", 1982 | "conjugated_type": "*", 1983 | "conjugated_form": "*", 1984 | "basic_form": "受け入れ", 1985 | "reading": "ウケイレ", 1986 | "pronunciation": "ウケイレ" 1987 | } 1988 | ] 1989 | }, 1990 | // Rule #140 1991 | { 1992 | "message": "受け渡し->受渡し 動詞の場合、修正しない。", 1993 | "expected": "受渡し", 1994 | "tokens": [ 1995 | { 1996 | "surface_form": "受け渡し", 1997 | "pos": "名詞", 1998 | "pos_detail_1": "サ変接続", 1999 | "pos_detail_2": "*", 2000 | "pos_detail_3": "*", 2001 | "conjugated_type": "*", 2002 | "conjugated_form": "*", 2003 | "basic_form": "受け渡し", 2004 | "reading": "ウケワタシ", 2005 | "pronunciation": "ウケワタシ" 2006 | } 2007 | ] 2008 | }, 2009 | // Rule #141 2010 | { 2011 | "message": "渦巻き->渦巻 動詞の場合、修正しない。", 2012 | "expected": "渦巻", 2013 | "tokens": [ 2014 | { 2015 | "surface_form": "渦巻き", 2016 | "pos": "名詞", 2017 | "pos_detail_1": "一般", 2018 | "pos_detail_2": "*", 2019 | "pos_detail_3": "*", 2020 | "conjugated_type": "*", 2021 | "conjugated_form": "*", 2022 | "basic_form": "渦巻き", 2023 | "reading": "ウズマキ", 2024 | "pronunciation": "ウズマキ" 2025 | } 2026 | ] 2027 | }, 2028 | // Rule #142.2 2029 | { 2030 | "message": "打ち合わせ->打合せ 動詞の場合、修正しない。", 2031 | "expected": "打合せ", 2032 | "tokens": [ 2033 | { 2034 | "surface_form": "打ち合わせ", 2035 | "pos": "名詞", 2036 | "pos_detail_1": "一般", 2037 | "pos_detail_2": "*", 2038 | "pos_detail_3": "*", 2039 | "conjugated_type": "*", 2040 | "conjugated_form": "*", 2041 | "basic_form": "打ち合わせ", 2042 | "reading": "ウチアワセ", 2043 | "pronunciation": "ウチアワセ" 2044 | } 2045 | ] 2046 | }, 2047 | // Rule #144 2048 | { 2049 | "message": "打ち切り->打切り 動詞の場合、修正しない。", 2050 | "expected": "打切り", 2051 | "tokens": [ 2052 | { 2053 | "surface_form": "打ち切り", 2054 | "pos": "名詞", 2055 | "pos_detail_1": "一般", 2056 | "pos_detail_2": "*", 2057 | "pos_detail_3": "*", 2058 | "conjugated_type": "*", 2059 | "conjugated_form": "*", 2060 | "basic_form": "打ち切り", 2061 | "reading": "ウチキリ", 2062 | "pronunciation": "ウチキリ" 2063 | } 2064 | ] 2065 | }, 2066 | // Rule #145 2067 | { 2068 | "message": "内払い->内払 動詞の場合、修正しない。", 2069 | "expected": "内払", 2070 | "tokens": [ 2071 | { 2072 | "surface_form": "内払い", 2073 | "pos": "名詞", 2074 | "pos_detail_1": "一般", 2075 | "pos_detail_2": "*", 2076 | "pos_detail_3": "*", 2077 | "conjugated_type": "*", 2078 | "conjugated_form": "*", 2079 | "basic_form": "内払い", 2080 | "reading": "ウチバライ", 2081 | "pronunciation": "ウチバライ" 2082 | } 2083 | ] 2084 | }, 2085 | // Rule #146 2086 | { 2087 | "message": "移し替え->移替え 動詞の場合、修正しない。", 2088 | "expected": "移替え", 2089 | "tokens": [ 2090 | { 2091 | "surface_form": "移し", 2092 | "pos": "名詞", 2093 | "pos_detail_1": "一般", 2094 | "pos_detail_2": "*", 2095 | "pos_detail_3": "*", 2096 | "conjugated_type": "*", 2097 | "conjugated_form": "*", 2098 | "basic_form": "移し", 2099 | "reading": "ウツシ", 2100 | "pronunciation": "ウツシ" 2101 | }, 2102 | { 2103 | "surface_form": "替え", 2104 | "pos": "名詞", 2105 | "pos_detail_1": "接尾", 2106 | "pos_detail_2": "一般", 2107 | "pos_detail_3": "*", 2108 | "conjugated_type": "*", 2109 | "conjugated_form": "*", 2110 | "basic_form": "替え", 2111 | "reading": "ガエ", 2112 | "pronunciation": "ガエ" 2113 | } 2114 | ] 2115 | }, 2116 | // Rule #147 2117 | { 2118 | "message": "埋め立て->埋立て 動詞の場合、修正しない。", 2119 | "expected": "埋立て", 2120 | "tokens": [ 2121 | { 2122 | "surface_form": "埋め立て", 2123 | "pos": "名詞", 2124 | "pos_detail_1": "サ変接続", 2125 | "pos_detail_2": "*", 2126 | "pos_detail_3": "*", 2127 | "conjugated_type": "*", 2128 | "conjugated_form": "*", 2129 | "basic_form": "埋め立て", 2130 | "reading": "ウメタテ", 2131 | "pronunciation": "ウメタテ" 2132 | } 2133 | ] 2134 | }, 2135 | // Rule #148 2136 | { 2137 | "message": "売り上げ->売上げ 動詞の場合、修正しない。", 2138 | "expected": "売上げ", 2139 | "tokens": [ 2140 | { 2141 | "surface_form": "売り上げ", 2142 | "pos": "名詞", 2143 | "pos_detail_1": "一般", 2144 | "pos_detail_2": "*", 2145 | "pos_detail_3": "*", 2146 | "conjugated_type": "*", 2147 | "conjugated_form": "*", 2148 | "basic_form": "売り上げ", 2149 | "reading": "ウリアゲ", 2150 | "pronunciation": "ウリアゲ" 2151 | } 2152 | ] 2153 | }, 2154 | // Rule #149 2155 | { 2156 | "message": "売り惜しみ->売惜しみ 動詞の場合、修正しない。", 2157 | "expected": "売惜しみ", 2158 | "tokens": [ 2159 | { 2160 | "surface_form": "売り惜しみ", 2161 | "pos": "名詞", 2162 | "pos_detail_1": "サ変接続", 2163 | "pos_detail_2": "*", 2164 | "pos_detail_3": "*", 2165 | "conjugated_type": "*", 2166 | "conjugated_form": "*", 2167 | "basic_form": "売り惜しみ", 2168 | "reading": "ウリオシミ", 2169 | "pronunciation": "ウリオシミ" 2170 | } 2171 | ] 2172 | }, 2173 | // Rule #150 2174 | { 2175 | "message": "売り出し->売出し 動詞の場合、修正しない。", 2176 | "expected": "売出し", 2177 | "tokens": [ 2178 | { 2179 | "surface_form": "売り出し", 2180 | "pos": "名詞", 2181 | "pos_detail_1": "一般", 2182 | "pos_detail_2": "*", 2183 | "pos_detail_3": "*", 2184 | "conjugated_type": "*", 2185 | "conjugated_form": "*", 2186 | "basic_form": "売り出し", 2187 | "reading": "ウリダシ", 2188 | "pronunciation": "ウリダシ" 2189 | } 2190 | ] 2191 | }, 2192 | // Rule #151 2193 | { 2194 | "message": "売り場->売場 動詞の場合、修正しない。", 2195 | "expected": "売場", 2196 | "tokens": [ 2197 | { 2198 | "surface_form": "売り場", 2199 | "pos": "名詞", 2200 | "pos_detail_1": "一般", 2201 | "pos_detail_2": "*", 2202 | "pos_detail_3": "*", 2203 | "conjugated_type": "*", 2204 | "conjugated_form": "*", 2205 | "basic_form": "売り場", 2206 | "reading": "ウリバ", 2207 | "pronunciation": "ウリバ" 2208 | } 2209 | ] 2210 | }, 2211 | // Rule #153 2212 | { 2213 | "message": "売り渡し->売渡し 動詞の場合、修正しない。", 2214 | "expected": "売渡し", 2215 | "tokens": [ 2216 | { 2217 | "surface_form": "売り渡し", 2218 | "pos": "名詞", 2219 | "pos_detail_1": "一般", 2220 | "pos_detail_2": "*", 2221 | "pos_detail_3": "*", 2222 | "conjugated_type": "*", 2223 | "conjugated_form": "*", 2224 | "basic_form": "売り渡し", 2225 | "reading": "ウリワタシ", 2226 | "pronunciation": "ウリワタシ" 2227 | } 2228 | ] 2229 | }, 2230 | // Rule #154 2231 | { 2232 | "message": "売れ行き->売行き 動詞の場合、修正しない。", 2233 | "expected": "売行き", 2234 | "tokens": [ 2235 | { 2236 | "surface_form": "売れ行き", 2237 | "pos": "名詞", 2238 | "pos_detail_1": "一般", 2239 | "pos_detail_2": "*", 2240 | "pos_detail_3": "*", 2241 | "conjugated_type": "*", 2242 | "conjugated_form": "*", 2243 | "basic_form": "売れ行き", 2244 | "reading": "ウレユキ", 2245 | "pronunciation": "ウレユキ" 2246 | } 2247 | ] 2248 | }, 2249 | // Rule #155 2250 | { 2251 | "message": "縁組み->縁組 動詞の場合、修正しない。", 2252 | "expected": "縁組", 2253 | "tokens": [ 2254 | { 2255 | "surface_form": "縁組み", 2256 | "pos": "名詞", 2257 | "pos_detail_1": "一般", 2258 | "pos_detail_2": "*", 2259 | "pos_detail_3": "*", 2260 | "conjugated_type": "*", 2261 | "conjugated_form": "*", 2262 | "basic_form": "縁組み", 2263 | "reading": "エングミ", 2264 | "pronunciation": "エングミ" 2265 | } 2266 | ] 2267 | }, 2268 | // Rule #156 2269 | { 2270 | "message": "追い越し->追越し 動詞の場合、修正しない。", 2271 | "expected": "追越し", 2272 | "tokens": [ 2273 | { 2274 | "surface_form": "追い越し", 2275 | "pos": "名詞", 2276 | "pos_detail_1": "一般", 2277 | "pos_detail_2": "*", 2278 | "pos_detail_3": "*", 2279 | "conjugated_type": "*", 2280 | "conjugated_form": "*", 2281 | "basic_form": "追い越し", 2282 | "reading": "オイコシ", 2283 | "pronunciation": "オイコシ" 2284 | } 2285 | ] 2286 | }, 2287 | // Rule #161 2288 | { 2289 | "message": "買い上げ->買上げ 動詞の場合、修正しない。", 2290 | "expected": "買上げ", 2291 | "tokens": [ 2292 | { 2293 | "surface_form": "買い上げ", 2294 | "pos": "名詞", 2295 | "pos_detail_1": "一般", 2296 | "pos_detail_2": "*", 2297 | "pos_detail_3": "*", 2298 | "conjugated_type": "*", 2299 | "conjugated_form": "*", 2300 | "basic_form": "買い上げ", 2301 | "reading": "カイアゲ", 2302 | "pronunciation": "カイアゲ" 2303 | } 2304 | ] 2305 | }, 2306 | // Rule #162 2307 | { 2308 | "message": "買い入れ->買入れ 動詞の場合、修正しない。", 2309 | "expected": "買入れ", 2310 | "tokens": [ 2311 | { 2312 | "surface_form": "買い入れ", 2313 | "pos": "名詞", 2314 | "pos_detail_1": "一般", 2315 | "pos_detail_2": "*", 2316 | "pos_detail_3": "*", 2317 | "conjugated_type": "*", 2318 | "conjugated_form": "*", 2319 | "basic_form": "買い入れ", 2320 | "reading": "カイイレ", 2321 | "pronunciation": "カイイレ" 2322 | } 2323 | ] 2324 | }, 2325 | // Rule #163 2326 | { 2327 | "message": "買い受け->買受け 動詞の場合、修正しない。", 2328 | "expected": "買受け", 2329 | "tokens": [ 2330 | { 2331 | "surface_form": "買い受け", 2332 | "pos": "動詞", 2333 | "pos_detail_1": "自立", 2334 | "pos_detail_2": "*", 2335 | "pos_detail_3": "*", 2336 | "conjugated_type": "一段", 2337 | "conjugated_form": "連用形", 2338 | "basic_form": "買い受ける", 2339 | "reading": "カイウケ", 2340 | "pronunciation": "カイウケ" 2341 | } 2342 | ] 2343 | }, 2344 | // Rule #164 2345 | { 2346 | "message": "買い換え->買換え 動詞の場合、修正しない。", 2347 | "expected": "買換え", 2348 | "tokens": [ 2349 | { 2350 | "surface_form": "買い換え", 2351 | "pos": "動詞", 2352 | "pos_detail_1": "自立", 2353 | "pos_detail_2": "*", 2354 | "pos_detail_3": "*", 2355 | "conjugated_type": "一段", 2356 | "conjugated_form": "連用形", 2357 | "basic_form": "買い換える", 2358 | "reading": "カイカエ", 2359 | "pronunciation": "カイカエ" 2360 | } 2361 | ] 2362 | }, 2363 | // Rule #165 2364 | { 2365 | "message": "買い占め->買占め 動詞の場合、修正しない。", 2366 | "expected": "買占め", 2367 | "tokens": [ 2368 | { 2369 | "surface_form": "買い占め", 2370 | "pos": "名詞", 2371 | "pos_detail_1": "サ変接続", 2372 | "pos_detail_2": "*", 2373 | "pos_detail_3": "*", 2374 | "conjugated_type": "*", 2375 | "conjugated_form": "*", 2376 | "basic_form": "買い占め", 2377 | "reading": "カイシメ", 2378 | "pronunciation": "カイシメ" 2379 | } 2380 | ] 2381 | }, 2382 | // Rule #166 2383 | { 2384 | "message": "買い取り->買取り 動詞の場合、修正しない。", 2385 | "expected": "買取り", 2386 | "tokens": [ 2387 | { 2388 | "surface_form": "買い取り", 2389 | "pos": "名詞", 2390 | "pos_detail_1": "一般", 2391 | "pos_detail_2": "*", 2392 | "pos_detail_3": "*", 2393 | "conjugated_type": "*", 2394 | "conjugated_form": "*", 2395 | "basic_form": "買い取り", 2396 | "reading": "カイトリ", 2397 | "pronunciation": "カイトリ" 2398 | } 2399 | ] 2400 | }, 2401 | // Rule #167 2402 | { 2403 | "message": "買い戻し->買戻し 動詞の場合、修正しない。", 2404 | "expected": "買戻し", 2405 | "tokens": [ 2406 | { 2407 | "surface_form": "買い戻し", 2408 | "pos": "動詞", 2409 | "pos_detail_1": "自立", 2410 | "pos_detail_2": "*", 2411 | "pos_detail_3": "*", 2412 | "conjugated_type": "五段・サ行", 2413 | "conjugated_form": "連用形", 2414 | "basic_form": "買い戻す", 2415 | "reading": "カイモドシ", 2416 | "pronunciation": "カイモドシ" 2417 | } 2418 | ] 2419 | }, 2420 | // Rule #169 2421 | { 2422 | "message": "書き換え->書換え 動詞の場合、修正しない。", 2423 | "expected": "書換え", 2424 | "tokens": [ 2425 | { 2426 | "surface_form": "書き換え", 2427 | "pos": "名詞", 2428 | "pos_detail_1": "サ変接続", 2429 | "pos_detail_2": "*", 2430 | "pos_detail_3": "*", 2431 | "conjugated_type": "*", 2432 | "conjugated_form": "*", 2433 | "basic_form": "書き換え", 2434 | "reading": "カキカエ", 2435 | "pronunciation": "カキカエ" 2436 | } 2437 | ] 2438 | }, 2439 | // Rule #170 2440 | { 2441 | "message": "格付け->格付 動詞の場合、修正しない。", 2442 | "expected": "格付", 2443 | "tokens": [ 2444 | { 2445 | "surface_form": "格付け", 2446 | "pos": "名詞", 2447 | "pos_detail_1": "サ変接続", 2448 | "pos_detail_2": "*", 2449 | "pos_detail_3": "*", 2450 | "conjugated_type": "*", 2451 | "conjugated_form": "*", 2452 | "basic_form": "格付け", 2453 | "reading": "カクヅケ", 2454 | "pronunciation": "カクズケ" 2455 | } 2456 | ] 2457 | }, 2458 | // Rule #171 2459 | { 2460 | "message": "掛け金->掛金 動詞の場合、修正しない。", 2461 | "expected": "掛金", 2462 | "tokens": [ 2463 | { 2464 | "surface_form": "掛け金", 2465 | "pos": "名詞", 2466 | "pos_detail_1": "一般", 2467 | "pos_detail_2": "*", 2468 | "pos_detail_3": "*", 2469 | "conjugated_type": "*", 2470 | "conjugated_form": "*", 2471 | "basic_form": "掛け金", 2472 | "reading": "カケキン", 2473 | "pronunciation": "カケキン" 2474 | } 2475 | ] 2476 | }, 2477 | // Rule #172 2478 | { 2479 | "message": "貸し切り->貸切り 動詞の場合、修正しない。", 2480 | "expected": "貸切り", 2481 | "tokens": [ 2482 | { 2483 | "surface_form": "貸し切り", 2484 | "pos": "名詞", 2485 | "pos_detail_1": "一般", 2486 | "pos_detail_2": "*", 2487 | "pos_detail_3": "*", 2488 | "conjugated_type": "*", 2489 | "conjugated_form": "*", 2490 | "basic_form": "貸し切り", 2491 | "reading": "カシキリ", 2492 | "pronunciation": "カシキリ" 2493 | } 2494 | ] 2495 | }, 2496 | // Rule #173 2497 | { 2498 | "message": "貸し金->貸金 動詞の場合、修正しない。", 2499 | "expected": "貸金", 2500 | "tokens": [ 2501 | { 2502 | "surface_form": "貸し金", 2503 | "pos": "名詞", 2504 | "pos_detail_1": "一般", 2505 | "pos_detail_2": "*", 2506 | "pos_detail_3": "*", 2507 | "conjugated_type": "*", 2508 | "conjugated_form": "*", 2509 | "basic_form": "貸し金", 2510 | "reading": "カシキン", 2511 | "pronunciation": "カシキン" 2512 | } 2513 | ] 2514 | }, 2515 | // Rule #174 2516 | { 2517 | "message": "貸し越し->貸越し 動詞の場合、修正しない。", 2518 | "expected": "貸越し", 2519 | "tokens": [ 2520 | { 2521 | "surface_form": "貸し越し", 2522 | "pos": "動詞", 2523 | "pos_detail_1": "自立", 2524 | "pos_detail_2": "*", 2525 | "pos_detail_3": "*", 2526 | "conjugated_type": "五段・サ行", 2527 | "conjugated_form": "連用形", 2528 | "basic_form": "貸し越す", 2529 | "reading": "カシコシ", 2530 | "pronunciation": "カシコシ" 2531 | } 2532 | ] 2533 | }, 2534 | // Rule #175 2535 | { 2536 | "message": "貸し倒れ->貸倒れ 動詞の場合、修正しない。", 2537 | "expected": "貸倒れ", 2538 | "tokens": [ 2539 | { 2540 | "surface_form": "貸し倒れ", 2541 | "pos": "名詞", 2542 | "pos_detail_1": "一般", 2543 | "pos_detail_2": "*", 2544 | "pos_detail_3": "*", 2545 | "conjugated_type": "*", 2546 | "conjugated_form": "*", 2547 | "basic_form": "貸し倒れ", 2548 | "reading": "カシダオレ", 2549 | "pronunciation": "カシダオレ" 2550 | } 2551 | ] 2552 | }, 2553 | // Rule #176 2554 | { 2555 | "message": "貸し出し->貸出し 動詞の場合、修正しない。", 2556 | "expected": "貸出し", 2557 | "tokens": [ 2558 | { 2559 | "surface_form": "貸し出し", 2560 | "pos": "名詞", 2561 | "pos_detail_1": "一般", 2562 | "pos_detail_2": "*", 2563 | "pos_detail_3": "*", 2564 | "conjugated_type": "*", 2565 | "conjugated_form": "*", 2566 | "basic_form": "貸し出し", 2567 | "reading": "カシダシ", 2568 | "pronunciation": "カシダシ" 2569 | } 2570 | ] 2571 | }, 2572 | // Rule #177 2573 | { 2574 | "message": "貸し付け->貸付け 動詞の場合、修正しない。", 2575 | "expected": "貸付け", 2576 | "tokens": [ 2577 | { 2578 | "surface_form": "貸し付け", 2579 | "pos": "名詞", 2580 | "pos_detail_1": "一般", 2581 | "pos_detail_2": "*", 2582 | "pos_detail_3": "*", 2583 | "conjugated_type": "*", 2584 | "conjugated_form": "*", 2585 | "basic_form": "貸し付け", 2586 | "reading": "カシツケ", 2587 | "pronunciation": "カシツケ" 2588 | } 2589 | ] 2590 | }, 2591 | // Rule #178 2592 | { 2593 | "message": "借り入れ->借入れ 動詞の場合、修正しない。", 2594 | "expected": "借入れ", 2595 | "tokens": [ 2596 | { 2597 | "surface_form": "借り入れ", 2598 | "pos": "名詞", 2599 | "pos_detail_1": "一般", 2600 | "pos_detail_2": "*", 2601 | "pos_detail_3": "*", 2602 | "conjugated_type": "*", 2603 | "conjugated_form": "*", 2604 | "basic_form": "借り入れ", 2605 | "reading": "カリイレ", 2606 | "pronunciation": "カリイレ" 2607 | } 2608 | ] 2609 | }, 2610 | // Rule #179 2611 | { 2612 | "message": "借り受け->借受け 動詞の場合、修正しない。", 2613 | "expected": "借受け", 2614 | "tokens": [ 2615 | { 2616 | "surface_form": "借り受け", 2617 | "pos": "動詞", 2618 | "pos_detail_1": "自立", 2619 | "pos_detail_2": "*", 2620 | "pos_detail_3": "*", 2621 | "conjugated_type": "一段", 2622 | "conjugated_form": "連用形", 2623 | "basic_form": "借り受ける", 2624 | "reading": "カリウケ", 2625 | "pronunciation": "カリウケ" 2626 | } 2627 | ] 2628 | }, 2629 | // Rule #180 2630 | { 2631 | "message": "借り換え->借換え 動詞の場合、修正しない。", 2632 | "expected": "借換え", 2633 | "tokens": [ 2634 | { 2635 | "surface_form": "借り換え", 2636 | "pos": "名詞", 2637 | "pos_detail_1": "一般", 2638 | "pos_detail_2": "*", 2639 | "pos_detail_3": "*", 2640 | "conjugated_type": "*", 2641 | "conjugated_form": "*", 2642 | "basic_form": "借り換え", 2643 | "reading": "カリカエ", 2644 | "pronunciation": "カリカエ" 2645 | } 2646 | ] 2647 | }, 2648 | // Rule #181 2649 | { 2650 | "message": "刈り取り->刈取り 動詞の場合、修正しない。", 2651 | "expected": "刈取り", 2652 | "tokens": [ 2653 | { 2654 | "surface_form": "刈り取り", 2655 | "pos": "名詞", 2656 | "pos_detail_1": "一般", 2657 | "pos_detail_2": "*", 2658 | "pos_detail_3": "*", 2659 | "conjugated_type": "*", 2660 | "conjugated_form": "*", 2661 | "basic_form": "刈り取り", 2662 | "reading": "カリトリ", 2663 | "pronunciation": "カリトリ" 2664 | } 2665 | ] 2666 | }, 2667 | // Rule #184 2668 | { 2669 | "message": "切り上げ->切上げ 動詞の場合、修正しない。", 2670 | "expected": "切上げ", 2671 | "tokens": [ 2672 | { 2673 | "surface_form": "切り上げ", 2674 | "pos": "名詞", 2675 | "pos_detail_1": "サ変接続", 2676 | "pos_detail_2": "*", 2677 | "pos_detail_3": "*", 2678 | "conjugated_type": "*", 2679 | "conjugated_form": "*", 2680 | "basic_form": "切り上げ", 2681 | "reading": "キリアゲ", 2682 | "pronunciation": "キリアゲ" 2683 | } 2684 | ] 2685 | }, 2686 | // Rule #185 2687 | { 2688 | "message": "切り替え->切替え 動詞の場合、修正しない。", 2689 | "expected": "切替え", 2690 | "tokens": [ 2691 | { 2692 | "surface_form": "切り替え", 2693 | "pos": "名詞", 2694 | "pos_detail_1": "一般", 2695 | "pos_detail_2": "*", 2696 | "pos_detail_3": "*", 2697 | "conjugated_type": "*", 2698 | "conjugated_form": "*", 2699 | "basic_form": "切り替え", 2700 | "reading": "キリカエ", 2701 | "pronunciation": "キリカエ" 2702 | } 2703 | ] 2704 | }, 2705 | // Rule #186 2706 | { 2707 | "message": "切り下げ->切下げ 動詞の場合、修正しない。", 2708 | "expected": "切下げ", 2709 | "tokens": [ 2710 | { 2711 | "surface_form": "切り下げ", 2712 | "pos": "名詞", 2713 | "pos_detail_1": "サ変接続", 2714 | "pos_detail_2": "*", 2715 | "pos_detail_3": "*", 2716 | "conjugated_type": "*", 2717 | "conjugated_form": "*", 2718 | "basic_form": "切り下げ", 2719 | "reading": "キリサゲ", 2720 | "pronunciation": "キリサゲ" 2721 | } 2722 | ] 2723 | }, 2724 | // Rule #187 2725 | { 2726 | "message": "切り捨て->切捨て 動詞の場合、修正しない。", 2727 | "expected": "切捨て", 2728 | "tokens": [ 2729 | { 2730 | "surface_form": "切り捨て", 2731 | "pos": "名詞", 2732 | "pos_detail_1": "サ変接続", 2733 | "pos_detail_2": "*", 2734 | "pos_detail_3": "*", 2735 | "conjugated_type": "*", 2736 | "conjugated_form": "*", 2737 | "basic_form": "切り捨て", 2738 | "reading": "キリステ", 2739 | "pronunciation": "キリステ" 2740 | } 2741 | ] 2742 | }, 2743 | // Rule #189 2744 | { 2745 | "message": "切り取り->切取り 動詞の場合、修正しない。", 2746 | "expected": "切取り", 2747 | "tokens": [ 2748 | { 2749 | "surface_form": "切り取り", 2750 | "pos": "名詞", 2751 | "pos_detail_1": "サ変接続", 2752 | "pos_detail_2": "*", 2753 | "pos_detail_3": "*", 2754 | "conjugated_type": "*", 2755 | "conjugated_form": "*", 2756 | "basic_form": "切り取り", 2757 | "reading": "キリトリ", 2758 | "pronunciation": "キリトリ" 2759 | } 2760 | ] 2761 | }, 2762 | // Rule #190 2763 | { 2764 | "message": "切り離し->切離し 動詞の場合、修正しない。", 2765 | "expected": "切離し", 2766 | "tokens": [ 2767 | { 2768 | "surface_form": "切り離し", 2769 | "pos": "名詞", 2770 | "pos_detail_1": "一般", 2771 | "pos_detail_2": "*", 2772 | "pos_detail_3": "*", 2773 | "conjugated_type": "*", 2774 | "conjugated_form": "*", 2775 | "basic_form": "切り離し", 2776 | "reading": "キリハナシ", 2777 | "pronunciation": "キリハナシ" 2778 | } 2779 | ] 2780 | }, 2781 | // Rule #192 2782 | { 2783 | "message": "組み合わせ->組合せ 動詞の場合、修正しない。", 2784 | "expected": "組合せ", 2785 | "tokens": [ 2786 | { 2787 | "surface_form": "組み合わせ", 2788 | "pos": "名詞", 2789 | "pos_detail_1": "一般", 2790 | "pos_detail_2": "*", 2791 | "pos_detail_3": "*", 2792 | "conjugated_type": "*", 2793 | "conjugated_form": "*", 2794 | "basic_form": "組み合わせ", 2795 | "reading": "クミアワセ", 2796 | "pronunciation": "クミアワセ" 2797 | } 2798 | ] 2799 | }, 2800 | // Rule #193 2801 | { 2802 | "message": "組み入れ->組入れ 動詞の場合、修正しない。", 2803 | "expected": "組入れ", 2804 | "tokens": [ 2805 | { 2806 | "surface_form": "組み", 2807 | "pos": "名詞", 2808 | "pos_detail_1": "一般", 2809 | "pos_detail_2": "*", 2810 | "pos_detail_3": "*", 2811 | "conjugated_type": "*", 2812 | "conjugated_form": "*", 2813 | "basic_form": "組み", 2814 | "reading": "クミ", 2815 | "pronunciation": "クミ" 2816 | }, 2817 | { 2818 | "surface_form": "入れ", 2819 | "pos": "名詞", 2820 | "pos_detail_1": "接尾", 2821 | "pos_detail_2": "一般", 2822 | "pos_detail_3": "*", 2823 | "conjugated_type": "*", 2824 | "conjugated_form": "*", 2825 | "basic_form": "入れ", 2826 | "reading": "イレ", 2827 | "pronunciation": "イレ" 2828 | } 2829 | ] 2830 | }, 2831 | // Rule #194 2832 | { 2833 | "message": "組み替え->組替え 動詞の場合、修正しない。", 2834 | "expected": "組替え", 2835 | "tokens": [ 2836 | { 2837 | "surface_form": "組み替え", 2838 | "pos": "名詞", 2839 | "pos_detail_1": "一般", 2840 | "pos_detail_2": "*", 2841 | "pos_detail_3": "*", 2842 | "conjugated_type": "*", 2843 | "conjugated_form": "*", 2844 | "basic_form": "組み替え", 2845 | "reading": "クミカエ", 2846 | "pronunciation": "クミカエ" 2847 | } 2848 | ] 2849 | }, 2850 | // Rule #195 2851 | { 2852 | "message": "組み立て->組立て 動詞の場合、修正しない。", 2853 | "expected": "組立て", 2854 | "tokens": [ 2855 | { 2856 | "surface_form": "組み立て", 2857 | "pos": "名詞", 2858 | "pos_detail_1": "一般", 2859 | "pos_detail_2": "*", 2860 | "pos_detail_3": "*", 2861 | "conjugated_type": "*", 2862 | "conjugated_form": "*", 2863 | "basic_form": "組み立て", 2864 | "reading": "クミタテ", 2865 | "pronunciation": "クミタテ" 2866 | } 2867 | ] 2868 | }, 2869 | // Rule #197 2870 | { 2871 | "message": "繰り上げ->繰上げ 動詞の場合、修正しない。", 2872 | "expected": "繰上げ", 2873 | "tokens": [ 2874 | { 2875 | "surface_form": "繰り上げ", 2876 | "pos": "動詞", 2877 | "pos_detail_1": "自立", 2878 | "pos_detail_2": "*", 2879 | "pos_detail_3": "*", 2880 | "conjugated_type": "一段", 2881 | "conjugated_form": "連用形", 2882 | "basic_form": "繰り上げる", 2883 | "reading": "クリアゲ", 2884 | "pronunciation": "クリアゲ" 2885 | } 2886 | ] 2887 | }, 2888 | // Rule #198 2889 | { 2890 | "message": "繰り入れ->繰入れ 動詞の場合、修正しない。", 2891 | "expected": "繰入れ", 2892 | "tokens": [ 2893 | { 2894 | "surface_form": "繰り入れ", 2895 | "pos": "名詞", 2896 | "pos_detail_1": "一般", 2897 | "pos_detail_2": "*", 2898 | "pos_detail_3": "*", 2899 | "conjugated_type": "*", 2900 | "conjugated_form": "*", 2901 | "basic_form": "繰り入れ", 2902 | "reading": "クリイレ", 2903 | "pronunciation": "クリイレ" 2904 | } 2905 | ] 2906 | }, 2907 | // Rule #199 2908 | { 2909 | "message": "繰り替え->繰替え 動詞の場合、修正しない。", 2910 | "expected": "繰替え", 2911 | "tokens": [ 2912 | { 2913 | "surface_form": "繰り替え", 2914 | "pos": "動詞", 2915 | "pos_detail_1": "自立", 2916 | "pos_detail_2": "*", 2917 | "pos_detail_3": "*", 2918 | "conjugated_type": "一段", 2919 | "conjugated_form": "連用形", 2920 | "basic_form": "繰り替える", 2921 | "reading": "クリカエ", 2922 | "pronunciation": "クリカエ" 2923 | } 2924 | ] 2925 | }, 2926 | // Rule #200 2927 | { 2928 | "message": "繰り越し->繰越し 動詞の場合、修正しない。", 2929 | "expected": "繰越し", 2930 | "tokens": [ 2931 | { 2932 | "surface_form": "繰り越し", 2933 | "pos": "名詞", 2934 | "pos_detail_1": "サ変接続", 2935 | "pos_detail_2": "*", 2936 | "pos_detail_3": "*", 2937 | "conjugated_type": "*", 2938 | "conjugated_form": "*", 2939 | "basic_form": "繰り越し", 2940 | "reading": "クリコシ", 2941 | "pronunciation": "クリコシ" 2942 | } 2943 | ] 2944 | }, 2945 | // Rule #201 2946 | { 2947 | "message": "繰り下げ->繰下げ 動詞の場合、修正しない。", 2948 | "expected": "繰下げ", 2949 | "tokens": [ 2950 | { 2951 | "surface_form": "繰り下げ", 2952 | "pos": "動詞", 2953 | "pos_detail_1": "自立", 2954 | "pos_detail_2": "*", 2955 | "pos_detail_3": "*", 2956 | "conjugated_type": "一段", 2957 | "conjugated_form": "連用形", 2958 | "basic_form": "繰り下げる", 2959 | "reading": "クリサゲ", 2960 | "pronunciation": "クリサゲ" 2961 | } 2962 | ] 2963 | }, 2964 | // Rule #202 2965 | { 2966 | "message": "繰り延べ->繰延べ 動詞の場合、修正しない。", 2967 | "expected": "繰延べ", 2968 | "tokens": [ 2969 | { 2970 | "surface_form": "繰り延べ", 2971 | "pos": "名詞", 2972 | "pos_detail_1": "サ変接続", 2973 | "pos_detail_2": "*", 2974 | "pos_detail_3": "*", 2975 | "conjugated_type": "*", 2976 | "conjugated_form": "*", 2977 | "basic_form": "繰り延べ", 2978 | "reading": "クリノベ", 2979 | "pronunciation": "クリノベ" 2980 | } 2981 | ] 2982 | }, 2983 | // Rule #204 2984 | { 2985 | "message": "差し押え->差押え 動詞の場合、修正しない。", 2986 | "expected": "差押え", 2987 | "tokens": [ 2988 | { 2989 | "surface_form": "差し押え", 2990 | "pos": "動詞", 2991 | "pos_detail_1": "自立", 2992 | "pos_detail_2": "*", 2993 | "pos_detail_3": "*", 2994 | "conjugated_type": "一段", 2995 | "conjugated_form": "連用形", 2996 | "basic_form": "差し押える", 2997 | "reading": "サシオサエ", 2998 | "pronunciation": "サシオサエ" 2999 | } 3000 | ] 3001 | }, 3002 | // Rule #205 3003 | { 3004 | "message": "差し止め->差止め 動詞の場合、修正しない。", 3005 | "expected": "差止め", 3006 | "tokens": [ 3007 | { 3008 | "surface_form": "差し止め", 3009 | "pos": "名詞", 3010 | "pos_detail_1": "一般", 3011 | "pos_detail_2": "*", 3012 | "pos_detail_3": "*", 3013 | "conjugated_type": "*", 3014 | "conjugated_form": "*", 3015 | "basic_form": "差し止め", 3016 | "reading": "サシトメ", 3017 | "pronunciation": "サシトメ" 3018 | } 3019 | ] 3020 | }, 3021 | // Rule #206 3022 | { 3023 | "message": "差し引き->差引き 動詞の場合、修正しない。", 3024 | "expected": "差引き", 3025 | "tokens": [ 3026 | { 3027 | "surface_form": "差し引き", 3028 | "pos": "名詞", 3029 | "pos_detail_1": "一般", 3030 | "pos_detail_2": "*", 3031 | "pos_detail_3": "*", 3032 | "conjugated_type": "*", 3033 | "conjugated_form": "*", 3034 | "basic_form": "差し引き", 3035 | "reading": "サシヒキ", 3036 | "pronunciation": "サシヒキ" 3037 | } 3038 | ] 3039 | }, 3040 | // Rule #207 3041 | { 3042 | "message": "差し戻し->差戻し 動詞の場合、修正しない。", 3043 | "expected": "差戻し", 3044 | "tokens": [ 3045 | { 3046 | "surface_form": "差し戻し", 3047 | "pos": "名詞", 3048 | "pos_detail_1": "一般", 3049 | "pos_detail_2": "*", 3050 | "pos_detail_3": "*", 3051 | "conjugated_type": "*", 3052 | "conjugated_form": "*", 3053 | "basic_form": "差し戻し", 3054 | "reading": "サシモドシ", 3055 | "pronunciation": "サシモドシ" 3056 | } 3057 | ] 3058 | }, 3059 | // Rule #210 3060 | { 3061 | "message": "締め切り->締切り 動詞の場合、修正しない。", 3062 | "expected": "締切り", 3063 | "tokens": [ 3064 | { 3065 | "surface_form": "締め切り", 3066 | "pos": "名詞", 3067 | "pos_detail_1": "一般", 3068 | "pos_detail_2": "*", 3069 | "pos_detail_3": "*", 3070 | "conjugated_type": "*", 3071 | "conjugated_form": "*", 3072 | "basic_form": "締め切り", 3073 | "reading": "シメキリ", 3074 | "pronunciation": "シメキリ" 3075 | } 3076 | ] 3077 | }, 3078 | // Rule #212 3079 | { 3080 | "message": "仕分け->仕分 動詞の場合、修正しない。", 3081 | "expected": "仕分", 3082 | "tokens": [ 3083 | { 3084 | "surface_form": "仕分け", 3085 | "pos": "名詞", 3086 | "pos_detail_1": "サ変接続", 3087 | "pos_detail_2": "*", 3088 | "pos_detail_3": "*", 3089 | "conjugated_type": "*", 3090 | "conjugated_form": "*", 3091 | "basic_form": "仕分け", 3092 | "reading": "シワケ", 3093 | "pronunciation": "シワケ" 3094 | } 3095 | ] 3096 | }, 3097 | // Rule #213 3098 | { 3099 | "message": "据え置き->据置き 動詞の場合、修正しない。", 3100 | "expected": "据置き", 3101 | "tokens": [ 3102 | { 3103 | "surface_form": "据え置き", 3104 | "pos": "名詞", 3105 | "pos_detail_1": "一般", 3106 | "pos_detail_2": "*", 3107 | "pos_detail_3": "*", 3108 | "conjugated_type": "*", 3109 | "conjugated_form": "*", 3110 | "basic_form": "据え置き", 3111 | "reading": "スエオキ", 3112 | "pronunciation": "スエオキ" 3113 | } 3114 | ] 3115 | }, 3116 | // Rule #214 3117 | { 3118 | "message": "据え付け->据付け 動詞の場合、修正しない。", 3119 | "expected": "据付け", 3120 | "tokens": [ 3121 | { 3122 | "surface_form": "据え付け", 3123 | "pos": "名詞", 3124 | "pos_detail_1": "サ変接続", 3125 | "pos_detail_2": "*", 3126 | "pos_detail_3": "*", 3127 | "conjugated_type": "*", 3128 | "conjugated_form": "*", 3129 | "basic_form": "据え付け", 3130 | "reading": "スエツケ", 3131 | "pronunciation": "スエツケ" 3132 | } 3133 | ] 3134 | }, 3135 | // Rule #216 3136 | { 3137 | "message": "座り込み->座込み 動詞の場合、修正しない。", 3138 | "expected": "座込み", 3139 | "tokens": [ 3140 | { 3141 | "surface_form": "座り込み", 3142 | "pos": "名詞", 3143 | "pos_detail_1": "一般", 3144 | "pos_detail_2": "*", 3145 | "pos_detail_3": "*", 3146 | "conjugated_type": "*", 3147 | "conjugated_form": "*", 3148 | "basic_form": "座り込み", 3149 | "reading": "スワリコミ", 3150 | "pronunciation": "スワリコミ" 3151 | } 3152 | ] 3153 | }, 3154 | // Rule #219 3155 | { 3156 | "message": "備え付け->備付け 動詞の場合、修正しない。", 3157 | "expected": "備付け", 3158 | "tokens": [ 3159 | { 3160 | "surface_form": "備え付け", 3161 | "pos": "名詞", 3162 | "pos_detail_1": "一般", 3163 | "pos_detail_2": "*", 3164 | "pos_detail_3": "*", 3165 | "conjugated_type": "*", 3166 | "conjugated_form": "*", 3167 | "basic_form": "備え付け", 3168 | "reading": "ソナエツケ", 3169 | "pronunciation": "ソナエツケ" 3170 | } 3171 | ] 3172 | }, 3173 | // Rule #222 3174 | { 3175 | "message": "立ち会い->立会い 動詞の場合、修正しない。", 3176 | "expected": "立会い", 3177 | "tokens": [ 3178 | { 3179 | "surface_form": "立ち会い", 3180 | "pos": "名詞", 3181 | "pos_detail_1": "一般", 3182 | "pos_detail_2": "*", 3183 | "pos_detail_3": "*", 3184 | "conjugated_type": "*", 3185 | "conjugated_form": "*", 3186 | "basic_form": "立ち会い", 3187 | "reading": "タチアイ", 3188 | "pronunciation": "タチアイ" 3189 | } 3190 | ] 3191 | }, 3192 | // Rule #223 3193 | { 3194 | "message": "立ち入り->立入り 動詞の場合、修正しない。", 3195 | "expected": "立入り", 3196 | "tokens": [ 3197 | { 3198 | "surface_form": "立ち入り", 3199 | "pos": "名詞", 3200 | "pos_detail_1": "一般", 3201 | "pos_detail_2": "*", 3202 | "pos_detail_3": "*", 3203 | "conjugated_type": "*", 3204 | "conjugated_form": "*", 3205 | "basic_form": "立ち入り", 3206 | "reading": "タチイリ", 3207 | "pronunciation": "タチイリ" 3208 | } 3209 | ] 3210 | }, 3211 | // Rule #224 3212 | { 3213 | "message": "立て替え->立替え 動詞の場合、修正しない。", 3214 | "expected": "立替え", 3215 | "tokens": [ 3216 | { 3217 | "surface_form": "立て替え", 3218 | "pos": "動詞", 3219 | "pos_detail_1": "自立", 3220 | "pos_detail_2": "*", 3221 | "pos_detail_3": "*", 3222 | "conjugated_type": "一段", 3223 | "conjugated_form": "連用形", 3224 | "basic_form": "立て替える", 3225 | "reading": "タテカエ", 3226 | "pronunciation": "タテカエ" 3227 | } 3228 | ] 3229 | }, 3230 | // Rule #227 3231 | { 3232 | "message": "付き添い->付添い 動詞の場合、修正しない。", 3233 | "expected": "付添い", 3234 | "tokens": [ 3235 | { 3236 | "surface_form": "付き添い", 3237 | "pos": "名詞", 3238 | "pos_detail_1": "一般", 3239 | "pos_detail_2": "*", 3240 | "pos_detail_3": "*", 3241 | "conjugated_type": "*", 3242 | "conjugated_form": "*", 3243 | "basic_form": "付き添い", 3244 | "reading": "ツキソイ", 3245 | "pronunciation": "ツキソイ" 3246 | } 3247 | ] 3248 | }, 3249 | // Rule #230 3250 | { 3251 | "message": "積み替え->積替え 動詞の場合、修正しない。", 3252 | "expected": "積替え", 3253 | "tokens": [ 3254 | { 3255 | "surface_form": "積み替え", 3256 | "pos": "名詞", 3257 | "pos_detail_1": "サ変接続", 3258 | "pos_detail_2": "*", 3259 | "pos_detail_3": "*", 3260 | "conjugated_type": "*", 3261 | "conjugated_form": "*", 3262 | "basic_form": "積み替え", 3263 | "reading": "ツミカエ", 3264 | "pronunciation": "ツミカエ" 3265 | } 3266 | ] 3267 | }, 3268 | // Rule #231 3269 | { 3270 | "message": "積み込み->積込み 動詞の場合、修正しない。", 3271 | "expected": "積込み", 3272 | "tokens": [ 3273 | { 3274 | "surface_form": "積み込み", 3275 | "pos": "名詞", 3276 | "pos_detail_1": "一般", 3277 | "pos_detail_2": "*", 3278 | "pos_detail_3": "*", 3279 | "conjugated_type": "*", 3280 | "conjugated_form": "*", 3281 | "basic_form": "積み込み", 3282 | "reading": "ツミコミ", 3283 | "pronunciation": "ツミコミ" 3284 | } 3285 | ] 3286 | }, 3287 | // Rule #232 3288 | { 3289 | "message": "積み出し->積出し 動詞の場合、修正しない。", 3290 | "expected": "積出し", 3291 | "tokens": [ 3292 | { 3293 | "surface_form": "積み出し", 3294 | "pos": "動詞", 3295 | "pos_detail_1": "自立", 3296 | "pos_detail_2": "*", 3297 | "pos_detail_3": "*", 3298 | "conjugated_type": "五段・サ行", 3299 | "conjugated_form": "連用形", 3300 | "basic_form": "積み出す", 3301 | "reading": "ツミダシ", 3302 | "pronunciation": "ツミダシ" 3303 | } 3304 | ] 3305 | }, 3306 | // Rule #233 3307 | { 3308 | "message": "積み立て->積立て 動詞の場合、修正しない。", 3309 | "expected": "積立て", 3310 | "tokens": [ 3311 | { 3312 | "surface_form": "積み立て", 3313 | "pos": "名詞", 3314 | "pos_detail_1": "一般", 3315 | "pos_detail_2": "*", 3316 | "pos_detail_3": "*", 3317 | "conjugated_type": "*", 3318 | "conjugated_form": "*", 3319 | "basic_form": "積み立て", 3320 | "reading": "ツミタテ", 3321 | "pronunciation": "ツミタテ" 3322 | } 3323 | ] 3324 | }, 3325 | // Rule #234 3326 | { 3327 | "message": "積み付け->積付け 動詞の場合、修正しない。", 3328 | "expected": "積付け", 3329 | "tokens": [ 3330 | { 3331 | "surface_form": "積み", 3332 | "pos": "動詞", 3333 | "pos_detail_1": "自立", 3334 | "pos_detail_2": "*", 3335 | "pos_detail_3": "*", 3336 | "conjugated_type": "五段・マ行", 3337 | "conjugated_form": "連用形", 3338 | "basic_form": "積む", 3339 | "reading": "ツミ", 3340 | "pronunciation": "ツミ" 3341 | }, 3342 | { 3343 | "surface_form": "付け", 3344 | "pos": "名詞", 3345 | "pos_detail_1": "接尾", 3346 | "pos_detail_2": "一般", 3347 | "pos_detail_3": "*", 3348 | "conjugated_type": "*", 3349 | "conjugated_form": "*", 3350 | "basic_form": "付け", 3351 | "reading": "ヅケ", 3352 | "pronunciation": "ズケ" 3353 | } 3354 | ] 3355 | }, 3356 | // Rule #235 3357 | { 3358 | "message": "釣り合い->釣合い 動詞の場合、修正しない。", 3359 | "expected": "釣合い", 3360 | "tokens": [ 3361 | { 3362 | "surface_form": "釣り合い", 3363 | "pos": "名詞", 3364 | "pos_detail_1": "一般", 3365 | "pos_detail_2": "*", 3366 | "pos_detail_3": "*", 3367 | "conjugated_type": "*", 3368 | "conjugated_form": "*", 3369 | "basic_form": "釣り合い", 3370 | "reading": "ツリアイ", 3371 | "pronunciation": "ツリアイ" 3372 | } 3373 | ] 3374 | }, 3375 | // Rule #240 3376 | { 3377 | "message": "届け出->届出 動詞の場合、修正しない。", 3378 | "expected": "届出", 3379 | "tokens": [ 3380 | { 3381 | "surface_form": "届け出", 3382 | "pos": "名詞", 3383 | "pos_detail_1": "サ変接続", 3384 | "pos_detail_2": "*", 3385 | "pos_detail_3": "*", 3386 | "conjugated_type": "*", 3387 | "conjugated_form": "*", 3388 | "basic_form": "届け出", 3389 | "reading": "トドケデ", 3390 | "pronunciation": "トドケデ" 3391 | } 3392 | ] 3393 | }, 3394 | // Rule #241 3395 | { 3396 | "message": "取り上げ->取上げ 動詞の場合、修正しない。", 3397 | "expected": "取上げ", 3398 | "tokens": [ 3399 | { 3400 | "surface_form": "取り上げ", 3401 | "pos": "名詞", 3402 | "pos_detail_1": "一般", 3403 | "pos_detail_2": "*", 3404 | "pos_detail_3": "*", 3405 | "conjugated_type": "*", 3406 | "conjugated_form": "*", 3407 | "basic_form": "取り上げ", 3408 | "reading": "トリアゲ", 3409 | "pronunciation": "トリアゲ" 3410 | } 3411 | ] 3412 | }, 3413 | // Rule #242 3414 | { 3415 | "message": "取り扱い->取扱い 動詞の場合、修正しない。", 3416 | "expected": "取扱い", 3417 | "tokens": [ 3418 | { 3419 | "surface_form": "取り扱い", 3420 | "pos": "名詞", 3421 | "pos_detail_1": "一般", 3422 | "pos_detail_2": "*", 3423 | "pos_detail_3": "*", 3424 | "conjugated_type": "*", 3425 | "conjugated_form": "*", 3426 | "basic_form": "取り扱い", 3427 | "reading": "トリアツカイ", 3428 | "pronunciation": "トリアツカイ" 3429 | } 3430 | ] 3431 | }, 3432 | // Rule #244 3433 | { 3434 | "message": "取り替え->取替え 動詞の場合、修正しない。", 3435 | "expected": "取替え", 3436 | "tokens": [ 3437 | { 3438 | "surface_form": "取り替え", 3439 | "pos": "動詞", 3440 | "pos_detail_1": "自立", 3441 | "pos_detail_2": "*", 3442 | "pos_detail_3": "*", 3443 | "conjugated_type": "一段", 3444 | "conjugated_form": "連用形", 3445 | "basic_form": "取り替える", 3446 | "reading": "トリカエ", 3447 | "pronunciation": "トリカエ" 3448 | } 3449 | ] 3450 | }, 3451 | // Rule #245 3452 | { 3453 | "message": "取り決め->取決め 動詞の場合、修正しない。", 3454 | "expected": "取決め", 3455 | "tokens": [ 3456 | { 3457 | "surface_form": "取り決め", 3458 | "pos": "名詞", 3459 | "pos_detail_1": "一般", 3460 | "pos_detail_2": "*", 3461 | "pos_detail_3": "*", 3462 | "conjugated_type": "*", 3463 | "conjugated_form": "*", 3464 | "basic_form": "取り決め", 3465 | "reading": "トリキメ", 3466 | "pronunciation": "トリキメ" 3467 | } 3468 | ] 3469 | }, 3470 | // Rule #246 3471 | { 3472 | "message": "取り崩し->取崩し 動詞の場合、修正しない。", 3473 | "expected": "取崩し", 3474 | "tokens": [ 3475 | { 3476 | "surface_form": "取り崩し", 3477 | "pos": "動詞", 3478 | "pos_detail_1": "自立", 3479 | "pos_detail_2": "*", 3480 | "pos_detail_3": "*", 3481 | "conjugated_type": "五段・サ行", 3482 | "conjugated_form": "連用形", 3483 | "basic_form": "取り崩す", 3484 | "reading": "トリクズシ", 3485 | "pronunciation": "トリクズシ" 3486 | } 3487 | ] 3488 | }, 3489 | // Rule #247 3490 | { 3491 | "message": "取り消し->取消し 動詞の場合、修正しない。", 3492 | "expected": "取消し", 3493 | "tokens": [ 3494 | { 3495 | "surface_form": "取り消し", 3496 | "pos": "名詞", 3497 | "pos_detail_1": "一般", 3498 | "pos_detail_2": "*", 3499 | "pos_detail_3": "*", 3500 | "conjugated_type": "*", 3501 | "conjugated_form": "*", 3502 | "basic_form": "取り消し", 3503 | "reading": "トリケシ", 3504 | "pronunciation": "トリケシ" 3505 | } 3506 | ] 3507 | }, 3508 | // Rule #248 3509 | { 3510 | "message": "取り壊し->取壊し 動詞の場合、修正しない。", 3511 | "expected": "取壊し", 3512 | "tokens": [ 3513 | { 3514 | "surface_form": "取り壊し", 3515 | "pos": "名詞", 3516 | "pos_detail_1": "一般", 3517 | "pos_detail_2": "*", 3518 | "pos_detail_3": "*", 3519 | "conjugated_type": "*", 3520 | "conjugated_form": "*", 3521 | "basic_form": "取り壊し", 3522 | "reading": "トリコワシ", 3523 | "pronunciation": "トリコワシ" 3524 | } 3525 | ] 3526 | }, 3527 | // Rule #249 3528 | { 3529 | "message": "取り下げ->取下げ 動詞の場合、修正しない。", 3530 | "expected": "取下げ", 3531 | "tokens": [ 3532 | { 3533 | "surface_form": "取り下げ", 3534 | "pos": "名詞", 3535 | "pos_detail_1": "一般", 3536 | "pos_detail_2": "*", 3537 | "pos_detail_3": "*", 3538 | "conjugated_type": "*", 3539 | "conjugated_form": "*", 3540 | "basic_form": "取り下げ", 3541 | "reading": "トリサゲ", 3542 | "pronunciation": "トリサゲ" 3543 | } 3544 | ] 3545 | }, 3546 | // Rule #250 3547 | { 3548 | "message": "取り締り->取締り 動詞の場合、修正しない。", 3549 | "expected": "取締り", 3550 | "tokens": [ 3551 | { 3552 | "surface_form": "取り締り", 3553 | "pos": "動詞", 3554 | "pos_detail_1": "自立", 3555 | "pos_detail_2": "*", 3556 | "pos_detail_3": "*", 3557 | "conjugated_type": "五段・ラ行", 3558 | "conjugated_form": "連用形", 3559 | "basic_form": "取り締る", 3560 | "reading": "トリシマリ", 3561 | "pronunciation": "トリシマリ" 3562 | } 3563 | ] 3564 | }, 3565 | // Rule #251 3566 | { 3567 | "message": "取り調べ->取調べ 動詞の場合、修正しない。", 3568 | "expected": "取調べ", 3569 | "tokens": [ 3570 | { 3571 | "surface_form": "取り調べ", 3572 | "pos": "名詞", 3573 | "pos_detail_1": "一般", 3574 | "pos_detail_2": "*", 3575 | "pos_detail_3": "*", 3576 | "conjugated_type": "*", 3577 | "conjugated_form": "*", 3578 | "basic_form": "取り調べ", 3579 | "reading": "トリシラベ", 3580 | "pronunciation": "トリシラベ" 3581 | } 3582 | ] 3583 | }, 3584 | // Rule #252 3585 | { 3586 | "message": "取り立て->取立て 動詞の場合、修正しない。", 3587 | "expected": "取立て", 3588 | "tokens": [ 3589 | { 3590 | "surface_form": "取り立て", 3591 | "pos": "名詞", 3592 | "pos_detail_1": "一般", 3593 | "pos_detail_2": "*", 3594 | "pos_detail_3": "*", 3595 | "conjugated_type": "*", 3596 | "conjugated_form": "*", 3597 | "basic_form": "取り立て", 3598 | "reading": "トリタテ", 3599 | "pronunciation": "トリタテ" 3600 | } 3601 | ] 3602 | }, 3603 | // Rule #253 3604 | { 3605 | "message": "取り次ぎ->取次ぎ 動詞の場合、修正しない。", 3606 | "expected": "取次ぎ", 3607 | "tokens": [ 3608 | { 3609 | "surface_form": "取り次ぎ", 3610 | "pos": "名詞", 3611 | "pos_detail_1": "一般", 3612 | "pos_detail_2": "*", 3613 | "pos_detail_3": "*", 3614 | "conjugated_type": "*", 3615 | "conjugated_form": "*", 3616 | "basic_form": "取り次ぎ", 3617 | "reading": "トリツギ", 3618 | "pronunciation": "トリツギ" 3619 | } 3620 | ] 3621 | }, 3622 | // Rule #254 3623 | { 3624 | "message": "取り付け->取付け 動詞の場合、修正しない。", 3625 | "expected": "取付け", 3626 | "tokens": [ 3627 | { 3628 | "surface_form": "取り付け", 3629 | "pos": "名詞", 3630 | "pos_detail_1": "一般", 3631 | "pos_detail_2": "*", 3632 | "pos_detail_3": "*", 3633 | "conjugated_type": "*", 3634 | "conjugated_form": "*", 3635 | "basic_form": "取り付け", 3636 | "reading": "トリツケ", 3637 | "pronunciation": "トリツケ" 3638 | } 3639 | ] 3640 | }, 3641 | // Rule #255 3642 | { 3643 | "message": "取り戻し->取戻し 動詞の場合、修正しない。", 3644 | "expected": "取戻し", 3645 | "tokens": [ 3646 | { 3647 | "surface_form": "取り戻し", 3648 | "pos": "動詞", 3649 | "pos_detail_1": "自立", 3650 | "pos_detail_2": "*", 3651 | "pos_detail_3": "*", 3652 | "conjugated_type": "五段・サ行", 3653 | "conjugated_form": "連用形", 3654 | "basic_form": "取り戻す", 3655 | "reading": "トリモドシ", 3656 | "pronunciation": "トリモドシ" 3657 | } 3658 | ] 3659 | }, 3660 | // Rule #256 3661 | { 3662 | "message": "投げ売り->投売り 動詞の場合、修正しない。", 3663 | "expected": "投売り", 3664 | "tokens": [ 3665 | { 3666 | "surface_form": "投げ売り", 3667 | "pos": "名詞", 3668 | "pos_detail_1": "一般", 3669 | "pos_detail_2": "*", 3670 | "pos_detail_3": "*", 3671 | "conjugated_type": "*", 3672 | "conjugated_form": "*", 3673 | "basic_form": "投げ売り", 3674 | "reading": "ナゲウリ", 3675 | "pronunciation": "ナゲウリ" 3676 | } 3677 | ] 3678 | }, 3679 | // Rule #257 3680 | { 3681 | "message": "抜き取り->抜取り 動詞の場合、修正しない。", 3682 | "expected": "抜取り", 3683 | "tokens": [ 3684 | { 3685 | "surface_form": "抜き取り", 3686 | "pos": "名詞", 3687 | "pos_detail_1": "一般", 3688 | "pos_detail_2": "*", 3689 | "pos_detail_3": "*", 3690 | "conjugated_type": "*", 3691 | "conjugated_form": "*", 3692 | "basic_form": "抜き取り", 3693 | "reading": "ヌキトリ", 3694 | "pronunciation": "ヌキトリ" 3695 | } 3696 | ] 3697 | }, 3698 | // Rule #259 3699 | { 3700 | "message": "乗り換え->乗換え 動詞の場合、修正しない。", 3701 | "expected": "乗換え", 3702 | "tokens": [ 3703 | { 3704 | "surface_form": "乗り換え", 3705 | "pos": "名詞", 3706 | "pos_detail_1": "一般", 3707 | "pos_detail_2": "*", 3708 | "pos_detail_3": "*", 3709 | "conjugated_type": "*", 3710 | "conjugated_form": "*", 3711 | "basic_form": "乗り換え", 3712 | "reading": "ノリカエ", 3713 | "pronunciation": "ノリカエ" 3714 | } 3715 | ] 3716 | }, 3717 | // Rule #260 3718 | { 3719 | "message": "乗り組み->乗組み 動詞の場合、修正しない。", 3720 | "expected": "乗組み", 3721 | "tokens": [ 3722 | { 3723 | "surface_form": "乗り組み", 3724 | "pos": "動詞", 3725 | "pos_detail_1": "自立", 3726 | "pos_detail_2": "*", 3727 | "pos_detail_3": "*", 3728 | "conjugated_type": "五段・マ行", 3729 | "conjugated_form": "連用形", 3730 | "basic_form": "乗り組む", 3731 | "reading": "ノリクミ", 3732 | "pronunciation": "ノリクミ" 3733 | } 3734 | ] 3735 | }, 3736 | // Rule #261 3737 | { 3738 | "message": "話し合い->話合い 動詞の場合、修正しない。", 3739 | "expected": "話合い", 3740 | "tokens": [ 3741 | { 3742 | "surface_form": "話し合い", 3743 | "pos": "名詞", 3744 | "pos_detail_1": "サ変接続", 3745 | "pos_detail_2": "*", 3746 | "pos_detail_3": "*", 3747 | "conjugated_type": "*", 3748 | "conjugated_form": "*", 3749 | "basic_form": "話し合い", 3750 | "reading": "ハナシアイ", 3751 | "pronunciation": "ハナシアイ" 3752 | } 3753 | ] 3754 | }, 3755 | // Rule #262 3756 | { 3757 | "message": "払い込み->払込み 動詞の場合、修正しない。", 3758 | "expected": "払込み", 3759 | "tokens": [ 3760 | { 3761 | "surface_form": "払い込み", 3762 | "pos": "名詞", 3763 | "pos_detail_1": "一般", 3764 | "pos_detail_2": "*", 3765 | "pos_detail_3": "*", 3766 | "conjugated_type": "*", 3767 | "conjugated_form": "*", 3768 | "basic_form": "払い込み", 3769 | "reading": "ハライコミ", 3770 | "pronunciation": "ハライコミ" 3771 | } 3772 | ] 3773 | }, 3774 | // Rule #263 3775 | { 3776 | "message": "払い下げ->払下げ 動詞の場合、修正しない。", 3777 | "expected": "払下げ", 3778 | "tokens": [ 3779 | { 3780 | "surface_form": "払い下げ", 3781 | "pos": "名詞", 3782 | "pos_detail_1": "サ変接続", 3783 | "pos_detail_2": "*", 3784 | "pos_detail_3": "*", 3785 | "conjugated_type": "*", 3786 | "conjugated_form": "*", 3787 | "basic_form": "払い下げ", 3788 | "reading": "ハライサゲ", 3789 | "pronunciation": "ハライサゲ" 3790 | } 3791 | ] 3792 | }, 3793 | // Rule #264 3794 | { 3795 | "message": "払い出し->払出し 動詞の場合、修正しない。", 3796 | "expected": "払出し", 3797 | "tokens": [ 3798 | { 3799 | "surface_form": "払い出し", 3800 | "pos": "名詞", 3801 | "pos_detail_1": "サ変接続", 3802 | "pos_detail_2": "*", 3803 | "pos_detail_3": "*", 3804 | "conjugated_type": "*", 3805 | "conjugated_form": "*", 3806 | "basic_form": "払い出し", 3807 | "reading": "ハライダシ", 3808 | "pronunciation": "ハライダシ" 3809 | } 3810 | ] 3811 | }, 3812 | // Rule #265 3813 | { 3814 | "message": "払い戻し->払戻し 動詞の場合、修正しない。", 3815 | "expected": "払戻し", 3816 | "tokens": [ 3817 | { 3818 | "surface_form": "払い戻し", 3819 | "pos": "名詞", 3820 | "pos_detail_1": "サ変接続", 3821 | "pos_detail_2": "*", 3822 | "pos_detail_3": "*", 3823 | "conjugated_type": "*", 3824 | "conjugated_form": "*", 3825 | "basic_form": "払い戻し", 3826 | "reading": "ハライモドシ", 3827 | "pronunciation": "ハライモドシ" 3828 | } 3829 | ] 3830 | }, 3831 | // Rule #266 3832 | { 3833 | "message": "払い渡し->払渡し 動詞の場合、修正しない。", 3834 | "expected": "払渡し", 3835 | "tokens": [ 3836 | { 3837 | "surface_form": "払い", 3838 | "pos": "動詞", 3839 | "pos_detail_1": "自立", 3840 | "pos_detail_2": "*", 3841 | "pos_detail_3": "*", 3842 | "conjugated_type": "五段・ワ行促音便", 3843 | "conjugated_form": "連用形", 3844 | "basic_form": "払う", 3845 | "reading": "ハライ", 3846 | "pronunciation": "ハライ" 3847 | }, 3848 | { 3849 | "surface_form": "渡し", 3850 | "pos": "名詞", 3851 | "pos_detail_1": "一般", 3852 | "pos_detail_2": "*", 3853 | "pos_detail_3": "*", 3854 | "conjugated_type": "*", 3855 | "conjugated_form": "*", 3856 | "basic_form": "渡し", 3857 | "reading": "ワタシ", 3858 | "pronunciation": "ワタシ" 3859 | } 3860 | ] 3861 | }, 3862 | // Rule #268 3863 | { 3864 | "message": "引き上げ->引上げ 動詞の場合、修正しない。", 3865 | "expected": "引上げ", 3866 | "tokens": [ 3867 | { 3868 | "surface_form": "引き上げ", 3869 | "pos": "名詞", 3870 | "pos_detail_1": "サ変接続", 3871 | "pos_detail_2": "*", 3872 | "pos_detail_3": "*", 3873 | "conjugated_type": "*", 3874 | "conjugated_form": "*", 3875 | "basic_form": "引き上げ", 3876 | "reading": "ヒキアゲ", 3877 | "pronunciation": "ヒキアゲ" 3878 | } 3879 | ] 3880 | }, 3881 | // Rule #269 3882 | { 3883 | "message": "引き揚げ->引揚げ 動詞の場合、修正しない。", 3884 | "expected": "引揚げ", 3885 | "tokens": [ 3886 | { 3887 | "surface_form": "引き揚げ", 3888 | "pos": "名詞", 3889 | "pos_detail_1": "一般", 3890 | "pos_detail_2": "*", 3891 | "pos_detail_3": "*", 3892 | "conjugated_type": "*", 3893 | "conjugated_form": "*", 3894 | "basic_form": "引き揚げ", 3895 | "reading": "ヒキアゲ", 3896 | "pronunciation": "ヒキアゲ" 3897 | } 3898 | ] 3899 | }, 3900 | // Rule #270 3901 | { 3902 | "message": "引き受け->引受け 動詞の場合、修正しない。", 3903 | "expected": "引受け", 3904 | "tokens": [ 3905 | { 3906 | "surface_form": "引き受け", 3907 | "pos": "名詞", 3908 | "pos_detail_1": "サ変接続", 3909 | "pos_detail_2": "*", 3910 | "pos_detail_3": "*", 3911 | "conjugated_type": "*", 3912 | "conjugated_form": "*", 3913 | "basic_form": "引き受け", 3914 | "reading": "ヒキウケ", 3915 | "pronunciation": "ヒキウケ" 3916 | } 3917 | ] 3918 | }, 3919 | // Rule #271 3920 | { 3921 | "message": "引き起し->引起し 動詞の場合、修正しない。", 3922 | "expected": "引起し", 3923 | "tokens": [ 3924 | { 3925 | "surface_form": "引き起し", 3926 | "pos": "動詞", 3927 | "pos_detail_1": "自立", 3928 | "pos_detail_2": "*", 3929 | "pos_detail_3": "*", 3930 | "conjugated_type": "五段・サ行", 3931 | "conjugated_form": "連用形", 3932 | "basic_form": "引き起す", 3933 | "reading": "ヒキオコシ", 3934 | "pronunciation": "ヒキオコシ" 3935 | } 3936 | ] 3937 | }, 3938 | // Rule #272 3939 | { 3940 | "message": "引き換え->引換え 動詞の場合、修正しない。", 3941 | "expected": "引換え", 3942 | "tokens": [ 3943 | { 3944 | "surface_form": "引き換え", 3945 | "pos": "名詞", 3946 | "pos_detail_1": "一般", 3947 | "pos_detail_2": "*", 3948 | "pos_detail_3": "*", 3949 | "conjugated_type": "*", 3950 | "conjugated_form": "*", 3951 | "basic_form": "引き換え", 3952 | "reading": "ヒキカエ", 3953 | "pronunciation": "ヒキカエ" 3954 | } 3955 | ] 3956 | }, 3957 | // Rule #273 3958 | { 3959 | "message": "引き込み->引込み 動詞の場合、修正しない。", 3960 | "expected": "引込み", 3961 | "tokens": [ 3962 | { 3963 | "surface_form": "引き込み", 3964 | "pos": "動詞", 3965 | "pos_detail_1": "自立", 3966 | "pos_detail_2": "*", 3967 | "pos_detail_3": "*", 3968 | "conjugated_type": "五段・マ行", 3969 | "conjugated_form": "連用形", 3970 | "basic_form": "引き込む", 3971 | "reading": "ヒキコミ", 3972 | "pronunciation": "ヒキコミ" 3973 | } 3974 | ] 3975 | }, 3976 | // Rule #274 3977 | { 3978 | "message": "引き下げ->引下げ 動詞の場合、修正しない。", 3979 | "expected": "引下げ", 3980 | "tokens": [ 3981 | { 3982 | "surface_form": "引き下げ", 3983 | "pos": "名詞", 3984 | "pos_detail_1": "サ変接続", 3985 | "pos_detail_2": "*", 3986 | "pos_detail_3": "*", 3987 | "conjugated_type": "*", 3988 | "conjugated_form": "*", 3989 | "basic_form": "引き下げ", 3990 | "reading": "ヒキサゲ", 3991 | "pronunciation": "ヒキサゲ" 3992 | } 3993 | ] 3994 | }, 3995 | // Rule #275 3996 | { 3997 | "message": "引き締め->引締め 動詞の場合、修正しない。", 3998 | "expected": "引締め", 3999 | "tokens": [ 4000 | { 4001 | "surface_form": "引き締め", 4002 | "pos": "名詞", 4003 | "pos_detail_1": "一般", 4004 | "pos_detail_2": "*", 4005 | "pos_detail_3": "*", 4006 | "conjugated_type": "*", 4007 | "conjugated_form": "*", 4008 | "basic_form": "引き締め", 4009 | "reading": "ヒキシメ", 4010 | "pronunciation": "ヒキシメ" 4011 | } 4012 | ] 4013 | }, 4014 | // Rule #276 4015 | { 4016 | "message": "引き継ぎ->引継ぎ 動詞の場合、修正しない。", 4017 | "expected": "引継ぎ", 4018 | "tokens": [ 4019 | { 4020 | "surface_form": "引き継ぎ", 4021 | "pos": "名詞", 4022 | "pos_detail_1": "一般", 4023 | "pos_detail_2": "*", 4024 | "pos_detail_3": "*", 4025 | "conjugated_type": "*", 4026 | "conjugated_form": "*", 4027 | "basic_form": "引き継ぎ", 4028 | "reading": "ヒキツギ", 4029 | "pronunciation": "ヒキツギ" 4030 | } 4031 | ] 4032 | }, 4033 | // Rule #277 4034 | { 4035 | "message": "引き取り->引取り 動詞の場合、修正しない。", 4036 | "expected": "引取り", 4037 | "tokens": [ 4038 | { 4039 | "surface_form": "引き取り", 4040 | "pos": "動詞", 4041 | "pos_detail_1": "自立", 4042 | "pos_detail_2": "*", 4043 | "pos_detail_3": "*", 4044 | "conjugated_type": "五段・ラ行", 4045 | "conjugated_form": "連用形", 4046 | "basic_form": "引き取る", 4047 | "reading": "ヒキトリ", 4048 | "pronunciation": "ヒキトリ" 4049 | } 4050 | ] 4051 | }, 4052 | // Rule #278 4053 | { 4054 | "message": "引き渡し->引渡し 動詞の場合、修正しない。", 4055 | "expected": "引渡し", 4056 | "tokens": [ 4057 | { 4058 | "surface_form": "引き渡し", 4059 | "pos": "名詞", 4060 | "pos_detail_1": "一般", 4061 | "pos_detail_2": "*", 4062 | "pos_detail_3": "*", 4063 | "conjugated_type": "*", 4064 | "conjugated_form": "*", 4065 | "basic_form": "引き渡し", 4066 | "reading": "ヒキワタシ", 4067 | "pronunciation": "ヒキワタシ" 4068 | } 4069 | ] 4070 | }, 4071 | // Rule #284 4072 | { 4073 | "message": "振り出し->振出し 動詞の場合、修正しない。", 4074 | "expected": "振出し", 4075 | "tokens": [ 4076 | { 4077 | "surface_form": "振り出し", 4078 | "pos": "名詞", 4079 | "pos_detail_1": "一般", 4080 | "pos_detail_2": "*", 4081 | "pos_detail_3": "*", 4082 | "conjugated_type": "*", 4083 | "conjugated_form": "*", 4084 | "basic_form": "振り出し", 4085 | "reading": "フリダシ", 4086 | "pronunciation": "フリダシ" 4087 | } 4088 | ] 4089 | }, 4090 | // Rule #286 4091 | { 4092 | "message": "巻き付け->巻付け 動詞の場合、修正しない。", 4093 | "expected": "巻付け", 4094 | "tokens": [ 4095 | { 4096 | "surface_form": "巻き付け", 4097 | "pos": "動詞", 4098 | "pos_detail_1": "自立", 4099 | "pos_detail_2": "*", 4100 | "pos_detail_3": "*", 4101 | "conjugated_type": "一段", 4102 | "conjugated_form": "連用形", 4103 | "basic_form": "巻き付ける", 4104 | "reading": "マキツケ", 4105 | "pronunciation": "マキツケ" 4106 | } 4107 | ] 4108 | }, 4109 | // Rule #287 4110 | { 4111 | "message": "巻き取り->巻取り 動詞の場合、修正しない。", 4112 | "expected": "巻取り", 4113 | "tokens": [ 4114 | { 4115 | "surface_form": "巻き", 4116 | "pos": "動詞", 4117 | "pos_detail_1": "自立", 4118 | "pos_detail_2": "*", 4119 | "pos_detail_3": "*", 4120 | "conjugated_type": "五段・カ行イ音便", 4121 | "conjugated_form": "連用形", 4122 | "basic_form": "巻く", 4123 | "reading": "マキ", 4124 | "pronunciation": "マキ" 4125 | }, 4126 | { 4127 | "surface_form": "取り", 4128 | "pos": "名詞", 4129 | "pos_detail_1": "接尾", 4130 | "pos_detail_2": "一般", 4131 | "pos_detail_3": "*", 4132 | "conjugated_type": "*", 4133 | "conjugated_form": "*", 4134 | "basic_form": "取り", 4135 | "reading": "トリ", 4136 | "pronunciation": "トリ" 4137 | } 4138 | ] 4139 | }, 4140 | // Rule #288 4141 | { 4142 | "message": "見合わせ->見合せ 動詞の場合、修正しない。", 4143 | "expected": "見合せ", 4144 | "tokens": [ 4145 | { 4146 | "surface_form": "見合わせ", 4147 | "pos": "名詞", 4148 | "pos_detail_1": "一般", 4149 | "pos_detail_2": "*", 4150 | "pos_detail_3": "*", 4151 | "conjugated_type": "*", 4152 | "conjugated_form": "*", 4153 | "basic_form": "見合わせ", 4154 | "reading": "ミアワセ", 4155 | "pronunciation": "ミアワセ" 4156 | } 4157 | ] 4158 | }, 4159 | // Rule #289 4160 | { 4161 | "message": "見積もり->見積り 動詞の場合、修正しない。", 4162 | "expected": "見積り", 4163 | "tokens": [ 4164 | { 4165 | "surface_form": "見積もり", 4166 | "pos": "名詞", 4167 | "pos_detail_1": "サ変接続", 4168 | "pos_detail_2": "*", 4169 | "pos_detail_3": "*", 4170 | "conjugated_type": "*", 4171 | "conjugated_form": "*", 4172 | "basic_form": "見積もり", 4173 | "reading": "ミツモリ", 4174 | "pronunciation": "ミツモリ" 4175 | } 4176 | ] 4177 | }, 4178 | // Rule #290 4179 | { 4180 | "message": "見習い->見習 動詞の場合、修正しない。", 4181 | "expected": "見習", 4182 | "tokens": [ 4183 | { 4184 | "surface_form": "見習い", 4185 | "pos": "名詞", 4186 | "pos_detail_1": "一般", 4187 | "pos_detail_2": "*", 4188 | "pos_detail_3": "*", 4189 | "conjugated_type": "*", 4190 | "conjugated_form": "*", 4191 | "basic_form": "見習い", 4192 | "reading": "ミナライ", 4193 | "pronunciation": "ミナライ" 4194 | } 4195 | ] 4196 | }, 4197 | // Rule #292 4198 | { 4199 | "message": "申し合わせ->申合せ 動詞の場合、修正しない。", 4200 | "expected": "申合せ", 4201 | "tokens": [ 4202 | { 4203 | "surface_form": "申し合わせ", 4204 | "pos": "名詞", 4205 | "pos_detail_1": "一般", 4206 | "pos_detail_2": "*", 4207 | "pos_detail_3": "*", 4208 | "conjugated_type": "*", 4209 | "conjugated_form": "*", 4210 | "basic_form": "申し合わせ", 4211 | "reading": "モウシアワセ", 4212 | "pronunciation": "モーシアワセ" 4213 | } 4214 | ] 4215 | }, 4216 | // Rule #294 4217 | { 4218 | "message": "申し入れ->申入れ 動詞の場合、修正しない。", 4219 | "expected": "申入れ", 4220 | "tokens": [ 4221 | { 4222 | "surface_form": "申し入れ", 4223 | "pos": "名詞", 4224 | "pos_detail_1": "一般", 4225 | "pos_detail_2": "*", 4226 | "pos_detail_3": "*", 4227 | "conjugated_type": "*", 4228 | "conjugated_form": "*", 4229 | "basic_form": "申し入れ", 4230 | "reading": "モウシイレ", 4231 | "pronunciation": "モーシイレ" 4232 | } 4233 | ] 4234 | }, 4235 | // Rule #295 4236 | { 4237 | "message": "申し込み->申込み 動詞の場合、修正しない。", 4238 | "expected": "申込み", 4239 | "tokens": [ 4240 | { 4241 | "surface_form": "申し込み", 4242 | "pos": "名詞", 4243 | "pos_detail_1": "一般", 4244 | "pos_detail_2": "*", 4245 | "pos_detail_3": "*", 4246 | "conjugated_type": "*", 4247 | "conjugated_form": "*", 4248 | "basic_form": "申し込み", 4249 | "reading": "モウシコミ", 4250 | "pronunciation": "モーシコ" 4251 | } 4252 | ] 4253 | }, 4254 | // Rule #296 4255 | { 4256 | "message": "申し立て->申立て 動詞の場合、修正しない。", 4257 | "expected": "申立て", 4258 | "tokens": [ 4259 | { 4260 | "surface_form": "申し立て", 4261 | "pos": "名詞", 4262 | "pos_detail_1": "一般", 4263 | "pos_detail_2": "*", 4264 | "pos_detail_3": "*", 4265 | "conjugated_type": "*", 4266 | "conjugated_form": "*", 4267 | "basic_form": "申し立て", 4268 | "reading": "モウシタテ", 4269 | "pronunciation": "モーシタテ" 4270 | } 4271 | ] 4272 | }, 4273 | // Rule #297 4274 | { 4275 | "message": "申し出->申出 動詞の場合、修正しない。", 4276 | "expected": "申出", 4277 | "tokens": [ 4278 | { 4279 | "surface_form": "申し出", 4280 | "pos": "名詞", 4281 | "pos_detail_1": "一般", 4282 | "pos_detail_2": "*", 4283 | "pos_detail_3": "*", 4284 | "conjugated_type": "*", 4285 | "conjugated_form": "*", 4286 | "basic_form": "申し出", 4287 | "reading": "モウシデ", 4288 | "pronunciation": "モーシデ" 4289 | } 4290 | ] 4291 | }, 4292 | // Rule #299 4293 | { 4294 | "message": "持ち込み->持込み 動詞の場合、修正しない。", 4295 | "expected": "持込み", 4296 | "tokens": [ 4297 | { 4298 | "surface_form": "持ち込み", 4299 | "pos": "名詞", 4300 | "pos_detail_1": "一般", 4301 | "pos_detail_2": "*", 4302 | "pos_detail_3": "*", 4303 | "conjugated_type": "*", 4304 | "conjugated_form": "*", 4305 | "basic_form": "持ち込み", 4306 | "reading": "モチコミ", 4307 | "pronunciation": "モチコミ" 4308 | } 4309 | ] 4310 | }, 4311 | // Rule #302 4312 | { 4313 | "message": "戻し入れ->戻入れ 動詞の場合、修正しない。", 4314 | "expected": "戻入れ", 4315 | "tokens": [ 4316 | { 4317 | "surface_form": "戻し", 4318 | "pos": "動詞", 4319 | "pos_detail_1": "自立", 4320 | "pos_detail_2": "*", 4321 | "pos_detail_3": "*", 4322 | "conjugated_type": "五段・サ行", 4323 | "conjugated_form": "連用形", 4324 | "basic_form": "戻す", 4325 | "reading": "モドシ", 4326 | "pronunciation": "モドシ" 4327 | }, 4328 | { 4329 | "surface_form": "入れ", 4330 | "pos": "名詞", 4331 | "pos_detail_1": "接尾", 4332 | "pos_detail_2": "一般", 4333 | "pos_detail_3": "*", 4334 | "conjugated_type": "*", 4335 | "conjugated_form": "*", 4336 | "basic_form": "入れ", 4337 | "reading": "イレ", 4338 | "pronunciation": "イレ" 4339 | } 4340 | ] 4341 | }, 4342 | // Rule #305 4343 | { 4344 | "message": "焼き付け->焼付け 動詞の場合、修正しない。", 4345 | "expected": "焼付け", 4346 | "tokens": [ 4347 | { 4348 | "surface_form": "焼き付け", 4349 | "pos": "名詞", 4350 | "pos_detail_1": "サ変接続", 4351 | "pos_detail_2": "*", 4352 | "pos_detail_3": "*", 4353 | "conjugated_type": "*", 4354 | "conjugated_form": "*", 4355 | "basic_form": "焼き付け", 4356 | "reading": "ヤキツケ", 4357 | "pronunciation": "ヤキツケ" 4358 | } 4359 | ] 4360 | }, 4361 | // Rule #306 4362 | { 4363 | "message": "雇い入れ->雇入れ 動詞の場合、修正しない。", 4364 | "expected": "雇入れ", 4365 | "tokens": [ 4366 | { 4367 | "surface_form": "雇い", 4368 | "pos": "動詞", 4369 | "pos_detail_1": "自立", 4370 | "pos_detail_2": "*", 4371 | "pos_detail_3": "*", 4372 | "conjugated_type": "五段・ワ行促音便", 4373 | "conjugated_form": "連用形", 4374 | "basic_form": "雇う", 4375 | "reading": "ヤトイ", 4376 | "pronunciation": "ヤトイ" 4377 | }, 4378 | { 4379 | "surface_form": "入れ", 4380 | "pos": "名詞", 4381 | "pos_detail_1": "接尾", 4382 | "pos_detail_2": "一般", 4383 | "pos_detail_3": "*", 4384 | "conjugated_type": "*", 4385 | "conjugated_form": "*", 4386 | "basic_form": "入れ", 4387 | "reading": "イレ", 4388 | "pronunciation": "イレ" 4389 | } 4390 | ] 4391 | }, 4392 | // Rule #308 4393 | { 4394 | "message": "譲り受け->譲受け 動詞の場合、修正しない。", 4395 | "expected": "譲受け", 4396 | "tokens": [ 4397 | { 4398 | "surface_form": "譲り受け", 4399 | "pos": "動詞", 4400 | "pos_detail_1": "自立", 4401 | "pos_detail_2": "*", 4402 | "pos_detail_3": "*", 4403 | "conjugated_type": "一段", 4404 | "conjugated_form": "連用形", 4405 | "basic_form": "譲り受ける", 4406 | "reading": "ユズリウケ", 4407 | "pronunciation": "ユズリウケ" 4408 | } 4409 | ] 4410 | }, 4411 | // Rule #309 4412 | { 4413 | "message": "譲り渡し->譲渡し 動詞の場合、修正しない。", 4414 | "expected": "譲渡し", 4415 | "tokens": [ 4416 | { 4417 | "surface_form": "譲り渡し", 4418 | "pos": "動詞", 4419 | "pos_detail_1": "自立", 4420 | "pos_detail_2": "*", 4421 | "pos_detail_3": "*", 4422 | "conjugated_type": "五段・サ行", 4423 | "conjugated_form": "連用形", 4424 | "basic_form": "譲り渡す", 4425 | "reading": "ユズリワタシ", 4426 | "pronunciation": "ユズリワタシ" 4427 | } 4428 | ] 4429 | }, 4430 | // Rule #310 4431 | { 4432 | "message": "呼び出し->呼出し 動詞の場合、修正しない。", 4433 | "expected": "呼出し", 4434 | "tokens": [ 4435 | { 4436 | "surface_form": "呼び出し", 4437 | "pos": "名詞", 4438 | "pos_detail_1": "サ変接続", 4439 | "pos_detail_2": "*", 4440 | "pos_detail_3": "*", 4441 | "conjugated_type": "*", 4442 | "conjugated_form": "*", 4443 | "basic_form": "呼び出し", 4444 | "reading": "ヨビダシ", 4445 | "pronunciation": "ヨビダシ" 4446 | } 4447 | ] 4448 | }, 4449 | // Rule #311 4450 | { 4451 | "message": "読み替え->読替え 動詞の場合、修正しない。", 4452 | "expected": "読替え", 4453 | "tokens": [ 4454 | { 4455 | "surface_form": "読み替え", 4456 | "pos": "動詞", 4457 | "pos_detail_1": "自立", 4458 | "pos_detail_2": "*", 4459 | "pos_detail_3": "*", 4460 | "conjugated_type": "一段", 4461 | "conjugated_form": "連用形", 4462 | "basic_form": "読み替える", 4463 | "reading": "ヨミカエ", 4464 | "pronunciation": "ヨミカエ" 4465 | } 4466 | ] 4467 | }, 4468 | // Rule #312 4469 | { 4470 | "message": "割り当て->割当て 動詞の場合、修正しない。", 4471 | "expected": "割当て", 4472 | "tokens": [ 4473 | { 4474 | "surface_form": "割り当て", 4475 | "pos": "名詞", 4476 | "pos_detail_1": "サ変接続", 4477 | "pos_detail_2": "*", 4478 | "pos_detail_3": "*", 4479 | "conjugated_type": "*", 4480 | "conjugated_form": "*", 4481 | "basic_form": "割り当て", 4482 | "reading": "ワリアテ", 4483 | "pronunciation": "ワリアテ" 4484 | } 4485 | ] 4486 | }, 4487 | // Rule #313 4488 | { 4489 | "message": "割り増し->割増し 動詞の場合、修正しない。", 4490 | "expected": "割増し", 4491 | "tokens": [ 4492 | { 4493 | "surface_form": "割り増し", 4494 | "pos": "名詞", 4495 | "pos_detail_1": "一般", 4496 | "pos_detail_2": "*", 4497 | "pos_detail_3": "*", 4498 | "conjugated_type": "*", 4499 | "conjugated_form": "*", 4500 | "basic_form": "割り増し", 4501 | "reading": "ワリマシ", 4502 | "pronunciation": "ワリマシ" 4503 | } 4504 | ] 4505 | }, 4506 | // Rule #314 4507 | { 4508 | "message": "割り戻し->割戻し 動詞の場合、修正しない。", 4509 | "expected": "割戻し", 4510 | "tokens": [ 4511 | { 4512 | "surface_form": "割り戻し", 4513 | "pos": "動詞", 4514 | "pos_detail_1": "自立", 4515 | "pos_detail_2": "*", 4516 | "pos_detail_3": "*", 4517 | "conjugated_type": "五段・サ行", 4518 | "conjugated_form": "連用形", 4519 | "basic_form": "割り戻す", 4520 | "reading": "ワリモドシ", 4521 | "pronunciation": "ワリモドシ" 4522 | } 4523 | ] 4524 | }, 4525 | // Rule #403 4526 | { 4527 | "message": "いす->椅子 「椅」は常用漢字(H22年~)", 4528 | "expected": "椅子", 4529 | "tokens": [ 4530 | { 4531 | "surface_form": "いす", 4532 | "pos": "名詞", 4533 | "pos_detail_1": "一般", 4534 | "pos_detail_2": "*", 4535 | "pos_detail_3": "*", 4536 | "conjugated_type": "*", 4537 | "conjugated_form": "*", 4538 | "basic_form": "いす", 4539 | "reading": "イス", 4540 | "pronunciation": "イス" 4541 | } 4542 | ] 4543 | }, 4544 | // Rule #406 4545 | { 4546 | "message": "かぎ->鍵 「鍵」は常用漢字(H22年~)", 4547 | "expected": "鍵", 4548 | "tokens": [ 4549 | { 4550 | "surface_form": "かぎ", 4551 | "pos": "名詞", 4552 | "pos_detail_1": "一般", 4553 | "pos_detail_2": "*", 4554 | "pos_detail_3": "*", 4555 | "conjugated_type": "*", 4556 | "conjugated_form": "*", 4557 | "basic_form": "かぎ", 4558 | "reading": "カギ", 4559 | "pronunciation": "カギ" 4560 | } 4561 | ] 4562 | }, 4563 | // Rule #408 4564 | { 4565 | "message": "がけ->崖 「崖」は常用漢字(H22年~)", 4566 | "expected": "崖", 4567 | "tokens": [ 4568 | { 4569 | "surface_form": "がけ", 4570 | "pos": "名詞", 4571 | "pos_detail_1": "一般", 4572 | "pos_detail_2": "*", 4573 | "pos_detail_3": "*", 4574 | "conjugated_type": "*", 4575 | "conjugated_form": "*", 4576 | "basic_form": "がけ", 4577 | "reading": "ガケ", 4578 | "pronunciation": "ガ" 4579 | } 4580 | ] 4581 | }, 4582 | // Rule #415 4583 | { 4584 | "message": "さく->柵 「柵」は常用漢字(H22年~)", 4585 | "expected": "柵", 4586 | "tokens": [ 4587 | { 4588 | "surface_form": "さく", 4589 | "pos": "名詞", 4590 | "pos_detail_1": "一般", 4591 | "pos_detail_2": "*", 4592 | "pos_detail_3": "*", 4593 | "conjugated_type": "*", 4594 | "conjugated_form": "*", 4595 | "basic_form": "さく", 4596 | "reading": "サク", 4597 | "pronunciation": "サク" 4598 | } 4599 | ] 4600 | }, 4601 | // Rule #443 4602 | { 4603 | "message": "かかわる->関わる 常用漢字表の読み(H22年~)", 4604 | "expected": "関わる", 4605 | "tokens": [ 4606 | { 4607 | "surface_form": "かかわる", 4608 | "pos": "動詞", 4609 | "pos_detail_1": "自立", 4610 | "pos_detail_2": "*", 4611 | "pos_detail_3": "*", 4612 | "conjugated_type": "五段・ラ行", 4613 | "conjugated_form": "基本形", 4614 | "basic_form": "かかわる", 4615 | "reading": "カカワル", 4616 | "pronunciation": "カカワル" 4617 | } 4618 | ] 4619 | }, 4620 | // Rule #444 4621 | { 4622 | "message": "かかわら->関わら 常用漢字表の読み(H22年~)", 4623 | "expected": "関わら", 4624 | "tokens": [ 4625 | { 4626 | "surface_form": "かかわら", 4627 | "pos": "動詞", 4628 | "pos_detail_1": "自立", 4629 | "pos_detail_2": "*", 4630 | "pos_detail_3": "*", 4631 | "conjugated_type": "五段・ラ行", 4632 | "conjugated_form": "未然形", 4633 | "basic_form": "かかわる", 4634 | "reading": "カカワラ", 4635 | "pronunciation": "カカワラ" 4636 | } 4637 | ] 4638 | }, 4639 | // Rule #445 4640 | { 4641 | "message": "かかわっ->関わっ 常用漢字表の読み(H22年~)", 4642 | "expected": "関わっ", 4643 | "tokens": [ 4644 | { 4645 | "surface_form": "かかわっ", 4646 | "pos": "動詞", 4647 | "pos_detail_1": "自立", 4648 | "pos_detail_2": "*", 4649 | "pos_detail_3": "*", 4650 | "conjugated_type": "五段・ラ行", 4651 | "conjugated_form": "連用タ接続", 4652 | "basic_form": "かかわる", 4653 | "reading": "カカワッ", 4654 | "pronunciation": "カカワッ" 4655 | } 4656 | ] 4657 | }, 4658 | // Rule #446 4659 | { 4660 | "message": "かかわり->関わり 常用漢字表の読み(H22年~)", 4661 | "expected": "関わり", 4662 | "tokens": [ 4663 | { 4664 | "surface_form": "かかわり", 4665 | "pos": "動詞", 4666 | "pos_detail_1": "自立", 4667 | "pos_detail_2": "*", 4668 | "pos_detail_3": "*", 4669 | "conjugated_type": "五段・ラ行", 4670 | "conjugated_form": "連用形", 4671 | "basic_form": "かかわる", 4672 | "reading": "カカワリ", 4673 | "pronunciation": "カカワリ" 4674 | } 4675 | ] 4676 | }, 4677 | // Rule #447 4678 | { 4679 | "message": "かかわれ->関われ 常用漢字表の読み(H22年~)", 4680 | "expected": "関われ", 4681 | "tokens": [ 4682 | { 4683 | "surface_form": "かかわれ", 4684 | "pos": "動詞", 4685 | "pos_detail_1": "自立", 4686 | "pos_detail_2": "*", 4687 | "pos_detail_3": "*", 4688 | "conjugated_type": "五段・ラ行", 4689 | "conjugated_form": "仮定形", 4690 | "basic_form": "かかわる", 4691 | "reading": "カカワレ", 4692 | "pronunciation": "カカワレ" 4693 | } 4694 | ] 4695 | }, 4696 | // Rule #448 4697 | { 4698 | "message": "かかわろ->関わろ 常用漢字表の読み(H22年~)", 4699 | "expected": "関わろ", 4700 | "tokens": [ 4701 | { 4702 | "surface_form": "かかわろ", 4703 | "pos": "動詞", 4704 | "pos_detail_1": "自立", 4705 | "pos_detail_2": "*", 4706 | "pos_detail_3": "*", 4707 | "conjugated_type": "五段・ラ行", 4708 | "conjugated_form": "未然ウ接続", 4709 | "basic_form": "かかわる", 4710 | "reading": "カカワロ", 4711 | "pronunciation": "カカワロ" 4712 | } 4713 | ] 4714 | }, 4715 | // Rule #463 4716 | { 4717 | "message": "虞->おそれ ", 4718 | "expected": "おそれ", 4719 | "tokens": [ 4720 | { 4721 | "surface_form": "虞", 4722 | "pos": "名詞", 4723 | "pos_detail_1": "一般", 4724 | "pos_detail_2": "*", 4725 | "pos_detail_3": "*", 4726 | "conjugated_type": "*", 4727 | "conjugated_form": "*", 4728 | "basic_form": "虞", 4729 | "reading": "オソレ", 4730 | "pronunciation": "オソ" 4731 | } 4732 | ] 4733 | }, 4734 | // Rule #464 4735 | { 4736 | "message": "恐れ->おそれ ", 4737 | "expected": "おそれ", 4738 | "tokens": [ 4739 | { 4740 | "surface_form": "恐れ", 4741 | "pos": "名詞", 4742 | "pos_detail_1": "一般", 4743 | "pos_detail_2": "*", 4744 | "pos_detail_3": "*", 4745 | "conjugated_type": "*", 4746 | "conjugated_form": "*", 4747 | "basic_form": "恐れ", 4748 | "reading": "オソレ", 4749 | "pronunciation": "オソレ" 4750 | } 4751 | ] 4752 | }, 4753 | // Rule #466 4754 | { 4755 | "message": "因る->よる ", 4756 | "expected": "よる", 4757 | "tokens": [ 4758 | { 4759 | "surface_form": "因る", 4760 | "pos": "動詞", 4761 | "pos_detail_1": "自立", 4762 | "pos_detail_2": "*", 4763 | "pos_detail_3": "*", 4764 | "conjugated_type": "五段・ラ行", 4765 | "conjugated_form": "基本形", 4766 | "basic_form": "因る", 4767 | "reading": "ヨル", 4768 | "pronunciation": "ヨル" 4769 | } 4770 | ] 4771 | }, 4772 | // Rule #467 4773 | { 4774 | "message": "因ら->よら ", 4775 | "expected": "よら", 4776 | "tokens": [ 4777 | { 4778 | "surface_form": "因ら", 4779 | "pos": "動詞", 4780 | "pos_detail_1": "自立", 4781 | "pos_detail_2": "*", 4782 | "pos_detail_3": "*", 4783 | "conjugated_type": "五段・ラ行", 4784 | "conjugated_form": "未然形", 4785 | "basic_form": "因る", 4786 | "reading": "ヨラ", 4787 | "pronunciation": "ヨラ" 4788 | } 4789 | ] 4790 | }, 4791 | // Rule #468 4792 | { 4793 | "message": "因っ->よっ ", 4794 | "expected": "よっ", 4795 | "tokens": [ 4796 | { 4797 | "surface_form": "因っ", 4798 | "pos": "動詞", 4799 | "pos_detail_1": "自立", 4800 | "pos_detail_2": "*", 4801 | "pos_detail_3": "*", 4802 | "conjugated_type": "五段・ラ行", 4803 | "conjugated_form": "連用タ接続", 4804 | "basic_form": "因る", 4805 | "reading": "ヨッ", 4806 | "pronunciation": "ヨッ" 4807 | } 4808 | ] 4809 | }, 4810 | // Rule #469 4811 | { 4812 | "message": "因り->より ", 4813 | "expected": "より", 4814 | "tokens": [ 4815 | { 4816 | "surface_form": "因り", 4817 | "pos": "動詞", 4818 | "pos_detail_1": "自立", 4819 | "pos_detail_2": "*", 4820 | "pos_detail_3": "*", 4821 | "conjugated_type": "五段・ラ行", 4822 | "conjugated_form": "連用形", 4823 | "basic_form": "因る", 4824 | "reading": "ヨリ", 4825 | "pronunciation": "ヨリ" 4826 | } 4827 | ] 4828 | }, 4829 | // Rule #470 4830 | { 4831 | "message": "因れ->よれ ", 4832 | "expected": "よれ", 4833 | "tokens": [ 4834 | { 4835 | "surface_form": "因れ", 4836 | "pos": "動詞", 4837 | "pos_detail_1": "自立", 4838 | "pos_detail_2": "*", 4839 | "pos_detail_3": "*", 4840 | "conjugated_type": "五段・ラ行", 4841 | "conjugated_form": "仮定形", 4842 | "basic_form": "因る", 4843 | "reading": "ヨレ", 4844 | "pronunciation": "ヨレ" 4845 | } 4846 | ] 4847 | }, 4848 | // Rule #471 4849 | { 4850 | "message": "因ろ->よろ ", 4851 | "expected": "よろ", 4852 | "tokens": [ 4853 | { 4854 | "surface_form": "因ろ", 4855 | "pos": "動詞", 4856 | "pos_detail_1": "自立", 4857 | "pos_detail_2": "*", 4858 | "pos_detail_3": "*", 4859 | "conjugated_type": "五段・ラ行", 4860 | "conjugated_form": "未然ウ接続", 4861 | "basic_form": "因る", 4862 | "reading": "ヨロ", 4863 | "pronunciation": "ヨロ" 4864 | } 4865 | ] 4866 | }, 4867 | // Rule #482 4868 | { 4869 | "message": "此->この ", 4870 | "expected": "この", 4871 | "tokens": [ 4872 | { 4873 | "surface_form": "此", 4874 | "pos": "名詞", 4875 | "pos_detail_1": "一般", 4876 | "pos_detail_2": "*", 4877 | "pos_detail_3": "*", 4878 | "conjugated_type": "*", 4879 | "conjugated_form": "*", 4880 | "basic_form": "*", 4881 | "reading": "", 4882 | "pronunciation": "" 4883 | } 4884 | ] 4885 | }, 4886 | // Rule #483 4887 | { 4888 | "message": "之->これ ", 4889 | "expected": "これ", 4890 | "tokens": [ 4891 | { 4892 | "surface_form": "之", 4893 | "pos": "名詞", 4894 | "pos_detail_1": "代名詞", 4895 | "pos_detail_2": "一般", 4896 | "pos_detail_3": "*", 4897 | "conjugated_type": "*", 4898 | "conjugated_form": "*", 4899 | "basic_form": "之", 4900 | "reading": "コレ", 4901 | "pronunciation": "コレ" 4902 | } 4903 | ] 4904 | }, 4905 | // Rule #484 4906 | { 4907 | "message": "其の->その ", 4908 | "expected": "その", 4909 | "tokens": [ 4910 | { 4911 | "surface_form": "其の", 4912 | "pos": "連体詞", 4913 | "pos_detail_1": "*", 4914 | "pos_detail_2": "*", 4915 | "pos_detail_3": "*", 4916 | "conjugated_type": "*", 4917 | "conjugated_form": "*", 4918 | "basic_form": "其の", 4919 | "reading": "ソノ", 4920 | "pronunciation": "ソノ" 4921 | } 4922 | ] 4923 | }, 4924 | // Rule #486 4925 | { 4926 | "message": "為->ため ", 4927 | "expected": "ため", 4928 | "tokens": [ 4929 | { 4930 | "surface_form": "為", 4931 | "pos": "名詞", 4932 | "pos_detail_1": "非自立", 4933 | "pos_detail_2": "副詞可能", 4934 | "pos_detail_3": "*", 4935 | "conjugated_type": "*", 4936 | "conjugated_form": "*", 4937 | "basic_form": "為", 4938 | "reading": "タメ", 4939 | "pronunciation": "タメ" 4940 | } 4941 | ] 4942 | }, 4943 | // Rule #488.1 4944 | { 4945 | "message": "彼等->彼ら ", 4946 | "expected": "彼ら", 4947 | "tokens": [ 4948 | { 4949 | "surface_form": "彼等", 4950 | "pos": "名詞", 4951 | "pos_detail_1": "代名詞", 4952 | "pos_detail_2": "一般", 4953 | "pos_detail_3": "*", 4954 | "conjugated_type": "*", 4955 | "conjugated_form": "*", 4956 | "basic_form": "彼等", 4957 | "reading": "カレラ", 4958 | "pronunciation": "カレラ" 4959 | } 4960 | ] 4961 | }, 4962 | // Rule #488.2 4963 | { 4964 | "message": "我等->我ら ", 4965 | "expected": "我ら", 4966 | "tokens": [ 4967 | { 4968 | "surface_form": "彼等", 4969 | "pos": "名詞", 4970 | "pos_detail_1": "代名詞", 4971 | "pos_detail_2": "一般", 4972 | "pos_detail_3": "*", 4973 | "conjugated_type": "*", 4974 | "conjugated_form": "*", 4975 | "basic_form": "彼等", 4976 | "reading": "カレラ", 4977 | "pronunciation": "カレラ" 4978 | } 4979 | ] 4980 | }, 4981 | // Rule #1044 4982 | { 4983 | "message": "ぬ->ない ", 4984 | "expected": "ない", 4985 | "tokens": [ 4986 | { 4987 | "surface_form": "ぬ", 4988 | "pos": "助動詞", 4989 | "pos_detail_1": "*", 4990 | "pos_detail_2": "*", 4991 | "pos_detail_3": "*", 4992 | "conjugated_type": "特殊・ヌ", 4993 | "conjugated_form": "基本形", 4994 | "basic_form": "ぬ", 4995 | "reading": "ヌ", 4996 | "pronunciation": "ヌ" 4997 | } 4998 | ] 4999 | }, 5000 | // Rule #1046 5001 | { 5002 | "message": "なる->な ただし、「いかなる」は用いてもよい。", 5003 | "expected": "な", 5004 | "tokens": [ 5005 | { 5006 | "surface_form": "なる", 5007 | "pos": "助動詞", 5008 | "pos_detail_1": "*", 5009 | "pos_detail_2": "*", 5010 | "pos_detail_3": "*", 5011 | "conjugated_type": "文語・ナリ", 5012 | "conjugated_form": "体言接続", 5013 | "basic_form": "なり", 5014 | "reading": "ナル", 5015 | "pronunciation": "ナル" 5016 | } 5017 | ] 5018 | }, 5019 | // Rule #1047 5020 | { 5021 | "message": "べく->×× ", 5022 | "expected": "××", 5023 | "tokens": [ 5024 | { 5025 | "surface_form": "べく", 5026 | "pos": "助動詞", 5027 | "pos_detail_1": "*", 5028 | "pos_detail_2": "*", 5029 | "pos_detail_3": "*", 5030 | "conjugated_type": "文語・ベシ", 5031 | "conjugated_form": "連用形", 5032 | "basic_form": "べし", 5033 | "reading": "ベク", 5034 | "pronunciation": "ベク" 5035 | } 5036 | ] 5037 | }, 5038 | // Rule #1048 5039 | { 5040 | "message": "べし->×× ", 5041 | "expected": "××", 5042 | "tokens": [ 5043 | { 5044 | "surface_form": "べし", 5045 | "pos": "助動詞", 5046 | "pos_detail_1": "*", 5047 | "pos_detail_2": "*", 5048 | "pos_detail_3": "*", 5049 | "conjugated_type": "文語・ベシ", 5050 | "conjugated_form": "基本形", 5051 | "basic_form": "べし", 5052 | "reading": "ベシ", 5053 | "pronunciation": "ベシ" 5054 | } 5055 | ] 5056 | }, 5057 | // Rule #10013 5058 | { 5059 | "message": "あたっ->当たっ ", 5060 | "expected": "当たっ", 5061 | "tokens": [ 5062 | { 5063 | "surface_form": "あたっ", 5064 | "pos": "動詞", 5065 | "pos_detail_1": "自立", 5066 | "pos_detail_2": "*", 5067 | "pos_detail_3": "*", 5068 | "conjugated_type": "五段・ラ行", 5069 | "conjugated_form": "連用タ接続", 5070 | "basic_form": "あたる", 5071 | "reading": "アタッ", 5072 | "pronunciation": "アタッ" 5073 | } 5074 | ] 5075 | }, 5076 | // Rule #10015 5077 | { 5078 | "message": "あたろ->当たろ ", 5079 | "expected": "当たろ", 5080 | "tokens": [ 5081 | { 5082 | "surface_form": "あたろ", 5083 | "pos": "動詞", 5084 | "pos_detail_1": "自立", 5085 | "pos_detail_2": "*", 5086 | "pos_detail_3": "*", 5087 | "conjugated_type": "五段・ラ行", 5088 | "conjugated_form": "未然ウ接続", 5089 | "basic_form": "あたる", 5090 | "reading": "アタロ", 5091 | "pronunciation": "アタロ" 5092 | } 5093 | ] 5094 | }, 5095 | // Rule #10016 5096 | { 5097 | "message": "あたれ->当たれ ", 5098 | "expected": "当たれ", 5099 | "tokens": [ 5100 | { 5101 | "surface_form": "あたれ", 5102 | "pos": "動詞", 5103 | "pos_detail_1": "自立", 5104 | "pos_detail_2": "*", 5105 | "pos_detail_3": "*", 5106 | "conjugated_type": "五段・ラ行", 5107 | "conjugated_form": "仮定形", 5108 | "basic_form": "あたる", 5109 | "reading": "アタレ", 5110 | "pronunciation": "アタレ" 5111 | } 5112 | ] 5113 | }, 5114 | // Rule #10017 5115 | { 5116 | "message": "あたる->当たる ", 5117 | "expected": "当たる", 5118 | "tokens": [ 5119 | { 5120 | "surface_form": "あたる", 5121 | "pos": "動詞", 5122 | "pos_detail_1": "自立", 5123 | "pos_detail_2": "*", 5124 | "pos_detail_3": "*", 5125 | "conjugated_type": "五段・ラ行", 5126 | "conjugated_form": "基本形", 5127 | "basic_form": "あたる", 5128 | "reading": "アタル", 5129 | "pronunciation": "アタル" 5130 | } 5131 | ] 5132 | }, 5133 | // Rule #10018 5134 | { 5135 | "message": "あたり->当たり ", 5136 | "expected": "当たり", 5137 | "tokens": [ 5138 | { 5139 | "surface_form": "あたり", 5140 | "pos": "動詞", 5141 | "pos_detail_1": "自立", 5142 | "pos_detail_2": "*", 5143 | "pos_detail_3": "*", 5144 | "conjugated_type": "五段・ラ行", 5145 | "conjugated_form": "連用形", 5146 | "basic_form": "あたり", 5147 | "reading": "アタリ", 5148 | "pronunciation": "アタリ" 5149 | } 5150 | ] 5151 | }, 5152 | // Rule #10019 5153 | { 5154 | "message": "にあたり->に当たり ", 5155 | "expected": "に当たり", 5156 | "tokens": [ 5157 | { 5158 | "surface_form": "にあたり", 5159 | "pos": "助詞", 5160 | "pos_detail_1": "格助詞", 5161 | "pos_detail_2": "連語", 5162 | "pos_detail_3": "*", 5163 | "conjugated_type": "*", 5164 | "conjugated_form": "*", 5165 | "basic_form": "にあたり", 5166 | "reading": "ニアタリ", 5167 | "pronunciation": "ニアタリ" 5168 | } 5169 | ] 5170 | }, 5171 | // Rule #10020 5172 | { 5173 | "message": "にあたって->に当たって ", 5174 | "expected": "に当たって", 5175 | "tokens": [ 5176 | { 5177 | "surface_form": "にあたって", 5178 | "pos": "助詞", 5179 | "pos_detail_1": "格助詞", 5180 | "pos_detail_2": "連語", 5181 | "pos_detail_3": "*", 5182 | "conjugated_type": "*", 5183 | "conjugated_form": "*", 5184 | "basic_form": "にあたって", 5185 | "reading": "ニアタッテ", 5186 | "pronunciation": "ニアタッテ" 5187 | } 5188 | ] 5189 | }, 5190 | // Rule #10021 5191 | { 5192 | "message": "あたら->当たら ", 5193 | "expected": "当たら", 5194 | "tokens": [ 5195 | { 5196 | "surface_form": "あたら", 5197 | "pos": "動詞", 5198 | "pos_detail_1": "自立", 5199 | "pos_detail_2": "*", 5200 | "pos_detail_3": "*", 5201 | "conjugated_type": "五段・ラ行", 5202 | "conjugated_form": "未然形", 5203 | "basic_form": "あたる", 5204 | "reading": "アタラ", 5205 | "pronunciation": "アタラ" 5206 | } 5207 | ] 5208 | }, 5209 | // Rule #10023 5210 | { 5211 | "message": "あて->宛 「宛」は常用漢字(H22年~)", 5212 | "expected": "宛", 5213 | "tokens": [ 5214 | { 5215 | "surface_form": "あて", 5216 | "pos": "名詞", 5217 | "pos_detail_1": "接尾", 5218 | "pos_detail_2": "一般", 5219 | "pos_detail_3": "*", 5220 | "conjugated_type": "*", 5221 | "conjugated_form": "*", 5222 | "basic_form": "あて", 5223 | "reading": "アテ", 5224 | "pronunciation": "アテ" 5225 | } 5226 | ] 5227 | }, 5228 | // Rule #10049 5229 | { 5230 | "message": "いくつ->幾つ ", 5231 | "expected": "幾つ", 5232 | "tokens": [ 5233 | { 5234 | "surface_form": "いくつ", 5235 | "pos": "名詞", 5236 | "pos_detail_1": "代名詞", 5237 | "pos_detail_2": "一般", 5238 | "pos_detail_3": "*", 5239 | "conjugated_type": "*", 5240 | "conjugated_form": "*", 5241 | "basic_form": "いくつ", 5242 | "reading": "イクツ", 5243 | "pronunciation": "イクツ" 5244 | } 5245 | ] 5246 | }, 5247 | // Rule #10050 5248 | { 5249 | "message": "いくら->幾ら ", 5250 | "expected": "幾ら", 5251 | "tokens": [ 5252 | { 5253 | "surface_form": "いくら", 5254 | "pos": "名詞", 5255 | "pos_detail_1": "一般", 5256 | "pos_detail_2": "*", 5257 | "pos_detail_3": "*", 5258 | "conjugated_type": "*", 5259 | "conjugated_form": "*", 5260 | "basic_form": "いくら", 5261 | "reading": "イクラ", 5262 | "pronunciation": "イクラ" 5263 | } 5264 | ] 5265 | }, 5266 | // Rule #10079 5267 | { 5268 | "message": "うえ->上 ", 5269 | "expected": "上", 5270 | "tokens": [ 5271 | { 5272 | "surface_form": "うえ", 5273 | "pos": "名詞", 5274 | "pos_detail_1": "非自立", 5275 | "pos_detail_2": "副詞可能", 5276 | "pos_detail_3": "*", 5277 | "conjugated_type": "*", 5278 | "conjugated_form": "*", 5279 | "basic_form": "うえ", 5280 | "reading": "ウエ", 5281 | "pronunciation": "ウエ" 5282 | } 5283 | ] 5284 | }, 5285 | // Rule #10127 5286 | { 5287 | "message": "鈎->かぎ ", 5288 | "expected": "かぎ", 5289 | "tokens": [ 5290 | { 5291 | "surface_form": "鈎", 5292 | "pos": "名詞", 5293 | "pos_detail_1": "一般", 5294 | "pos_detail_2": "*", 5295 | "pos_detail_3": "*", 5296 | "conjugated_type": "*", 5297 | "conjugated_form": "*", 5298 | "basic_form": "鈎", 5299 | "reading": "カギ", 5300 | "pronunciation": "カギ" 5301 | } 5302 | ] 5303 | }, 5304 | // Rule #10133 5305 | { 5306 | "message": "かっこ->括弧 ", 5307 | "expected": "括弧", 5308 | "tokens": [ 5309 | { 5310 | "surface_form": "かっこ", 5311 | "pos": "名詞", 5312 | "pos_detail_1": "サ変接続", 5313 | "pos_detail_2": "*", 5314 | "pos_detail_3": "*", 5315 | "conjugated_type": "*", 5316 | "conjugated_form": "*", 5317 | "basic_form": "かっこ", 5318 | "reading": "カッコ", 5319 | "pronunciation": "カッコ" 5320 | } 5321 | ] 5322 | }, 5323 | // Rule #10146 5324 | { 5325 | "message": "かわら->瓦 「瓦」は常用漢字(H22年~)", 5326 | "expected": "瓦", 5327 | "tokens": [ 5328 | { 5329 | "surface_form": "かわら", 5330 | "pos": "名詞", 5331 | "pos_detail_1": "一般", 5332 | "pos_detail_2": "*", 5333 | "pos_detail_3": "*", 5334 | "conjugated_type": "*", 5335 | "conjugated_form": "*", 5336 | "basic_form": "かわら", 5337 | "reading": "カワラ", 5338 | "pronunciation": "カワラ" 5339 | } 5340 | ] 5341 | }, 5342 | // Rule #10165 5343 | { 5344 | "message": "極->ごく ", 5345 | "expected": "ごく", 5346 | "tokens": [ 5347 | { 5348 | "surface_form": "極", 5349 | "pos": "副詞", 5350 | "pos_detail_1": "一般", 5351 | "pos_detail_2": "*", 5352 | "pos_detail_3": "*", 5353 | "conjugated_type": "*", 5354 | "conjugated_form": "*", 5355 | "basic_form": "極", 5356 | "reading": "ゴク", 5357 | "pronunciation": "ゴク" 5358 | } 5359 | ] 5360 | }, 5361 | // Rule #10181 5362 | { 5363 | "message": "ころ->頃 「頃」は常用漢字(H22年~)", 5364 | "expected": "頃", 5365 | "tokens": [ 5366 | { 5367 | "surface_form": "ころ", 5368 | "pos": "名詞", 5369 | "pos_detail_1": "非自立", 5370 | "pos_detail_2": "副詞可能", 5371 | "pos_detail_3": "*", 5372 | "conjugated_type": "*", 5373 | "conjugated_form": "*", 5374 | "basic_form": "ころ", 5375 | "reading": "コロ", 5376 | "pronunciation": "コロ" 5377 | } 5378 | ] 5379 | }, 5380 | // Rule #10182 5381 | { 5382 | "message": "ごろ->頃 「頃」は常用漢字(H22年~)", 5383 | "expected": "頃", 5384 | "tokens": [ 5385 | { 5386 | "surface_form": "ごろ", 5387 | "pos": "名詞", 5388 | "pos_detail_1": "接尾", 5389 | "pos_detail_2": "副詞可能", 5390 | "pos_detail_3": "*", 5391 | "conjugated_type": "*", 5392 | "conjugated_form": "*", 5393 | "basic_form": "ごろ", 5394 | "reading": "ゴロ", 5395 | "pronunciation": "ゴロ" 5396 | } 5397 | ] 5398 | }, 5399 | // Rule #10202 5400 | { 5401 | "message": "しかた->仕方 ", 5402 | "expected": "仕方", 5403 | "tokens": [ 5404 | { 5405 | "surface_form": "しかた", 5406 | "pos": "名詞", 5407 | "pos_detail_1": "ナイ形容詞語幹", 5408 | "pos_detail_2": "*", 5409 | "pos_detail_3": "*", 5410 | "conjugated_type": "*", 5411 | "conjugated_form": "*", 5412 | "basic_form": "しかた", 5413 | "reading": "シカタ", 5414 | "pronunciation": "シカタ" 5415 | } 5416 | ] 5417 | }, 5418 | // Rule #10266 5419 | { 5420 | "message": "だめ->駄目 ", 5421 | "expected": "駄目", 5422 | "tokens": [ 5423 | { 5424 | "surface_form": "だめ", 5425 | "pos": "名詞", 5426 | "pos_detail_1": "形容動詞語幹", 5427 | "pos_detail_2": "*", 5428 | "pos_detail_3": "*", 5429 | "conjugated_type": "*", 5430 | "conjugated_form": "*", 5431 | "basic_form": "だめ", 5432 | "reading": "ダメ", 5433 | "pronunciation": "ダメ" 5434 | } 5435 | ] 5436 | }, 5437 | // Rule #10292 5438 | { 5439 | "message": "つど->都度 ", 5440 | "expected": "都度", 5441 | "tokens": [ 5442 | { 5443 | "surface_form": "つど", 5444 | "pos": "名詞", 5445 | "pos_detail_1": "非自立", 5446 | "pos_detail_2": "副詞可能", 5447 | "pos_detail_3": "*", 5448 | "conjugated_type": "*", 5449 | "conjugated_form": "*", 5450 | "basic_form": "つど", 5451 | "reading": "ツド", 5452 | "pronunciation": "ツド" 5453 | } 5454 | ] 5455 | }, 5456 | // Rule #10319 5457 | { 5458 | "message": "なか->中 ", 5459 | "expected": "中", 5460 | "tokens": [ 5461 | { 5462 | "surface_form": "なか", 5463 | "pos": "名詞", 5464 | "pos_detail_1": "非自立", 5465 | "pos_detail_2": "副詞可能", 5466 | "pos_detail_3": "*", 5467 | "conjugated_type": "*", 5468 | "conjugated_form": "*", 5469 | "basic_form": "なか", 5470 | "reading": "ナカ", 5471 | "pronunciation": "ナカ" 5472 | } 5473 | ] 5474 | }, 5475 | // Rule #10511 5476 | { 5477 | "message": "わりに->割に ", 5478 | "expected": "割に", 5479 | "tokens": [ 5480 | { 5481 | "surface_form": "わりに", 5482 | "pos": "副詞", 5483 | "pos_detail_1": "一般", 5484 | "pos_detail_2": "*", 5485 | "pos_detail_3": "*", 5486 | "conjugated_type": "*", 5487 | "conjugated_form": "*", 5488 | "basic_form": "わりに", 5489 | "reading": "ワリニ", 5490 | "pronunciation": "ワリニ" 5491 | } 5492 | ] 5493 | }, 5494 | // Rule #20008 5495 | { 5496 | "message": "問い合わせ->問合せ ", 5497 | "expected": "問合せ", 5498 | "tokens": [ 5499 | { 5500 | "surface_form": "問い合わせ", 5501 | "pos": "名詞", 5502 | "pos_detail_1": "サ変接続", 5503 | "pos_detail_2": "*", 5504 | "pos_detail_3": "*", 5505 | "conjugated_type": "*", 5506 | "conjugated_form": "*", 5507 | "basic_form": "問い合わせ", 5508 | "reading": "トイアワセ", 5509 | "pronunciation": "トイアワセ" 5510 | } 5511 | ] 5512 | }, 5513 | // Rule #20009 5514 | { 5515 | "message": "問合わせ->問合せ ", 5516 | "expected": "問合せ", 5517 | "tokens": [ 5518 | { 5519 | "surface_form": "問", 5520 | "pos": "名詞", 5521 | "pos_detail_1": "一般", 5522 | "pos_detail_2": "*", 5523 | "pos_detail_3": "*", 5524 | "conjugated_type": "*", 5525 | "conjugated_form": "*", 5526 | "basic_form": "問", 5527 | "reading": "トイ", 5528 | "pronunciation": "トイ" 5529 | }, 5530 | { 5531 | "surface_form": "合わせ", 5532 | "pos": "名詞", 5533 | "pos_detail_1": "接尾", 5534 | "pos_detail_2": "一般", 5535 | "pos_detail_3": "*", 5536 | "conjugated_type": "*", 5537 | "conjugated_form": "*", 5538 | "basic_form": "合わせ", 5539 | "reading": "アワセ", 5540 | "pronunciation": "アワセ" 5541 | } 5542 | ] 5543 | } 5544 | ]; 5545 | -------------------------------------------------------------------------------- /src/textlint-rule-ja-official-documents.js: -------------------------------------------------------------------------------- 1 | // LICENSE : MIT 2 | "use strict"; 3 | import {createTextlintMatcher} from "morpheme-match-textlint" 4 | 5 | const tokenize = require("kuromojin").tokenize; 6 | const fs = require("fs"); 7 | const path = require("path"); 8 | const prh = require("textlint-rule-prh"); 9 | const dictionaryList = require("./dictionary"); 10 | 11 | const reporter = (context) => { 12 | const {Syntax, RuleError, report, fixer, getSource} = context; 13 | const matcherList = createTextlintMatcher({ 14 | tokenize: tokenize, 15 | dictionaries: dictionaryList 16 | }); 17 | const prhLinter = prh.linter; 18 | const prhStr = prhLinter(context, { 19 | ruleContents: [ 20 | fs.readFileSync(path.join(__dirname, "..", "dict", "prh.yml")) 21 | ] 22 | }); 23 | return { 24 | [Syntax.Str](node) { 25 | const text = getSource(node); 26 | prhStr[Syntax.Str](node); 27 | return matcherList(text).then(results => { 28 | results.forEach(result => { 29 | if (result.expected) { 30 | report(node, new RuleError(result.message, { 31 | index: result.index, 32 | fix: fixer.replaceTextRange(result.range, result.expected) 33 | })); 34 | } else { 35 | report(node, new RuleError(result.message, { 36 | index: result.index 37 | })); 38 | } 39 | 40 | }); 41 | }); 42 | } 43 | } 44 | }; 45 | module.exports = { 46 | linter: reporter, 47 | fixer: reporter 48 | }; 49 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require textlint-scripts/register -------------------------------------------------------------------------------- /test/no-confusing-adjust-and-apply-test.js: -------------------------------------------------------------------------------- 1 | // LICENSE : MIT 2 | "use strict"; 3 | const TextLintTester = require("textlint-tester"); 4 | const tester = new TextLintTester(); 5 | // rule 6 | import rule from "../src/textlint-rule-ja-no-abusage"; 7 | // ruleName, rule, { valid, invalid } 8 | tester.run("textlint-rule-no-confusing-adjust-and-apply", rule, { 9 | valid: [ 10 | // correct 適応 11 | "新料金プランが新たに適応される", 12 | "沖縄の暑い気候に体が適応する", 13 | "企業が市場の変化に適応するために事業戦略を変更する", 14 | "海から陸に上がった生物が地上の環境に適応する", 15 | "挿入ソートアルゴリズムは予めある程度ソートされたデータに適応する", 16 | "花粉症に適応する薬", 17 | "変化に適応する", 18 | // correct 適用 19 | "不具合への対応として、データパッチを適用する", 20 | "HTML 文書にスタイルシートを適用する", 21 | "関数を値に適用する", 22 | "クイックソートアルゴリズムを乱数列に適用する", 23 | "修正パッチをプログラムに適用する", 24 | "経営に失敗した企業に会社更生法を適用する", 25 | "厚生年金の適用", 26 | "規定を適用", 27 | "法律を適用", 28 | "読みづらい" 29 | ], 30 | invalid: [ 31 | { 32 | text: "`logger`と`crashReporter`のmiddlewareを適応した`createStore`関数を作る", 33 | output: "`logger`と`crashReporter`のmiddlewareを適用した`createStore`関数を作る", 34 | errors: [ 35 | { 36 | message: `"適用"の誤用である可能性があります。適応 => 適用`, 37 | index: 35 38 | } 39 | ] 40 | }, { 41 | text: "次に、 _middleware_ を適応する処理となる `applyMiddleware`を実装していきます。", 42 | output: "次に、 _middleware_ を適用する処理となる `applyMiddleware`を実装していきます。", 43 | errors: [ 44 | { 45 | message: `"適用"の誤用である可能性があります。適応 => 適用` 46 | } 47 | ] 48 | }, { 49 | text: "_middleware_ に対しても扱える機能の制限を適応しやすい", 50 | output: "_middleware_ に対しても扱える機能の制限を適用しやすい", 51 | errors: [ 52 | { 53 | message: `"適用"の誤用である可能性があります。適応 => 適用` 54 | } 55 | ] 56 | }, { 57 | text: "今朝起きた事件に法律を適応する", 58 | output: "今朝起きた事件に法律を適用する", 59 | errors: [ 60 | { 61 | message: `"適用"の誤用である可能性があります。適応 => 適用` 62 | } 63 | ] 64 | }, { 65 | text: "入院費用に保険を適応する", 66 | output: "入院費用に保険を適用する", 67 | errors: [ 68 | { 69 | message: `"適用"の誤用である可能性があります。適応 => 適用` 70 | } 71 | ] 72 | }, { 73 | text: "このやり方を適応する", 74 | output: "このやり方を適用する", 75 | errors: [ 76 | { 77 | message: `"適用"の誤用である可能性があります。適応 => 適用` 78 | } 79 | ] 80 | }, 81 | { 82 | text: "この本は読みずらい", 83 | output: "この本は読みづらい", 84 | errors: [ 85 | { 86 | message: `動詞の連用形+辛い(つらい)の場合は、「ずらい」ではなく「づらい」が適切です。 87 | 88 | 参考: 89 | - https://www.nhk.or.jp/bunken/summary/kotoba/uraomote/023.html 90 | - https://ameblo.jp/writer-yama/entry-10522384501.html` 91 | } 92 | ] 93 | }, 94 | { 95 | text: "この本は書きずらい", 96 | output: "この本は書きづらい", 97 | errors: [ 98 | { 99 | message: `動詞の連用形+辛い(つらい)の場合は、「ずらい」ではなく「づらい」が適切です。 100 | 101 | 参考: 102 | - https://www.nhk.or.jp/bunken/summary/kotoba/uraomote/023.html 103 | - https://ameblo.jp/writer-yama/entry-10522384501.html` 104 | } 105 | ] 106 | } 107 | ] 108 | }); 109 | -------------------------------------------------------------------------------- /test/no-variable-test.js: -------------------------------------------------------------------------------- 1 | // LICENSE : MIT 2 | "use strict"; 3 | const TextLintTester = require("textlint-tester"); 4 | const tester = new TextLintTester(); 5 | // rule 6 | import rule from "../src/textlint-rule-ja-no-abusage"; 7 | // ruleName, rule, { valid, invalid } 8 | tester.run("可変", rule, { 9 | valid: [ 10 | "長さは可変だ", 11 | ], 12 | invalid: [ 13 | { 14 | text: "ウインドウ幅が可変すると", 15 | errors: [ 16 | { 17 | message: `「可変する」という使い方は適切ではありません。「可逆」と同じ使い方になります。\nhttp://qiita.com/scivola/items/f02589968a4ca27bc52b`, 18 | index: 7 19 | } 20 | ] 21 | } 22 | ] 23 | }); 24 | --------------------------------------------------------------------------------