textlint rule that disallow exclamation and question mark.
npm install textlint-rule-no-exclamation-question-marktextlint rule that disallow exclamation and question mark.
Install with npm:
npm i textlint-rule-no-exclamation-question-mark
Via .textlintrc.
```
{
"rules": {
"no-exclamation-question-mark": true
}
}
Defaults: Disallows to use !?!?.
- allow: string[],[]
- allow word list that suppor RegExp-like String
- some unique noun is allowed by default
- Default: allowHalfWidthExclamation
- : booleanfalse
- allow to use !
- Default: allowFullWidthExclamation
- : booleanfalse
- allow to use !
- Default: allowHalfWidthQuestion
- : booleanfalse
- allow to use ?
- Default: allowFullWidthQuestion
- : booleanfalse
- allow to use ?
- Default:
``
{
"rules": {
"no-exclamation-question-mark": {
// allow words
"allow": [
"Yahoo!"
],
// allow to use !
"allowHalfWidthExclamation": false,
// allow to use !
"allowFullWidthExclamation": false,
// allow to use ?
"allowHalfWidthQuestion": false,
// allow to use ?
"allowFullWidthQuestion": false
}
}
}
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.
1. Fork it!
2. Create your feature branch: git checkout -b my-new-featuregit commit -am 'Add some feature'
3. Commit your changes: git push origin my-new-feature`
4. Push to the branch:
5. Submit a pull request :D
MIT © azu