原語の語尾の-er,-or,-arはカタカナでは長音にするtextlintルール
OK:
エディターはOK
エントリーはOK
サーバーはOK
マネージャーはOK
メーカーはOK
モーターはOK
プロジェクターはOK
リボルバーはOK
レーダーはOK
モジュラーはOK
カレンダーはOK
エンジニアは例外
ギアは例外
ジュニアは例外
NG:
エディタは-erなので長音
サーバは-erなので長音
ユーザは-erなので長音
ローカル・サーバは-erなので長音
ネットでコンピュータを買う
Install with npm:
npm install @textlint-ja/textlint-rule-kana-english-suffix-er
Via .textlintrc
(Recommended)
{
"rules": {
"@textlint-ja/kana-english-suffix-er": true
}
}
Via CLI
textlint --rule @textlint-ja/kana-english-suffix-er README.md
{
/**
* 許可する単語を指定できます
*/
allows?: string[];
/**
* 慣用的に長音が省略される単語も不許可にするかどうか
* デフォルト: false
*/
disableBuiltinAllows: boolean;
}
Example:
{
"rules": {
"@textlint-ja/kana-english-suffix-er": {
"allows": ["エディタ"],
"disableDefaultAllows": true
}
}
}
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.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT © azu