Created
November 2, 2017 07:09
-
-
Save tuxedocat/a0c9a40c17660250c151ce8854980533 to your computer and use it in GitHub Desktop.
textlintの設定(ほとんど技術書用プリセットと同じ)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "rules": { | |
| "max-comma": { | |
| "max": 3 | |
| }, | |
| "sentence-length": { | |
| "max": 90 | |
| }, | |
| "no-mix-dearu-desumasu": { | |
| "preferInHeader": "", | |
| "preferInBody": "ですます", | |
| "preferInList": "である", | |
| "strict": true | |
| }, | |
| "ja-no-mixed-period": { | |
| "periodMark": "。" | |
| }, | |
| "no-double-negative-ja": true, | |
| "no-dropping-the-ra": true, | |
| "no-doubled-conjunction": true, | |
| "no-doubled-joshi": { | |
| "min_interval": 1 | |
| }, | |
| "no-nfd": true, | |
| "no-exclamation-question-mark": true, | |
| "no-hankaku-kana": true, | |
| "ja-no-weak-phrase": false, | |
| "ja-no-successive-word": true, | |
| "ja-no-abusage": true, | |
| "max-kanji-continuous-len": { | |
| "max": 7, | |
| "allow": ["自然言語処理", "述語項構造解析", "機械学習手法"] | |
| }, | |
| }, | |
| "filters": { | |
| "comments": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment