Gathering detailed insights and metrics for textlint-rule-ja-no-mixed-period
Gathering detailed insights and metrics for textlint-rule-ja-no-mixed-period
Gathering detailed insights and metrics for textlint-rule-ja-no-mixed-period
Gathering detailed insights and metrics for textlint-rule-ja-no-mixed-period
npm install textlint-rule-ja-no-mixed-period
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
9 Stars
39 Commits
3 Forks
3 Watching
2 Branches
3 Contributors
Updated on 18 Nov 2023
TypeScript (99.7%)
Shell (0.3%)
Cumulative downloads
Total Downloads
Last day
-1.9%
4,781
Compared to previous day
Last week
8.7%
28,532
Compared to previous week
Last month
8.5%
118,627
Compared to previous month
Last year
29.1%
1,151,221
Compared to previous year
文末の句点(。)の統一 OR 抜けをチェックするtextlintルール
OK: これは問題ない文章です。
NG: これは問題ある文章です
パラグラフの末尾に必ず句点記号を付けていることをチェックするルールです。
Install with npm:
npm install textlint-rule-ja-no-mixed-period
Via .textlintrc
(Recommended)
1{ 2 "rules": { 3 "ja-no-mixed-period": true 4 } 5}
Via CLI
textlint --rule ja-no-mixed-period README.md
OK:
これは問題ないです。
末尾に感嘆符はある!
「これはセリフ」
english only
- 箇条書きは無視される
NG:
これは句点がありません
末尾にスペースがある。
絵文字が末尾にある。😆
periodMark
: string
:
allowPeriodMarks
: string[]
periodMark
に指定したものは自動的に許可リストに加わる[]
allowEmojiAtEnd
: boolean
false
forceAppendPeriod
: boolean
periodMark
を--fix時に追加するかどうかfalse
checkFootnote
: boolean
false
1{ 2 "rules": { 3 "ja-no-mixed-period": { 4 // 優先する句点文字 5 "periodMark": "。", 6 // 句点文字として許可する文字列の配列 7 "allowPeriodMarks": [], 8 // 末尾に絵文字を置くことを許可するか 9 "allowEmojiAtEnd": false, 10 // 句点で終わって無い場合に`periodMark`を--fix時に追加するかどうか 11 "forceAppendPeriod": false 12 } 13 } 14}
会話文/疑問文
末尾に。
がない場合でも、代わりに感嘆符や疑問符、括弧などがある場合は例外として扱います。
これは問題ない文章ですか!?
「会話文は括弧で括れば末尾に。がなくても問題ありません」
箇条書き
箇条書きの中はチェックせず無視します。
- これは問題ないです
- これも問題ないです
箇条書き間の。
の有無の統一については次のルールを参照してください。
日本語ではない
日本語が含まれていないパラグラフは無視します。
See Releases page.
Install devDependencies and Run npm test
:
npm i -d && npm test
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
MIT © azu
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 1/27 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
12 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More