1.1.0 • Published 5 years ago
textlint-rule-no-exclamation-question-mark v1.1.0
textlint-rule-no-exclamation-question-mark 
textlint rule that disallow exclamation and question mark.
Install
Install with npm:
npm i textlint-rule-no-exclamation-question-markUsage
Via .textlintrc.
{
"rules": {
"no-exclamation-question-mark": true
}
}Options
Defaults: Disallows to use !?!?.
allow:string[],- allow word list that suppor RegExp-like String
- some unique noun is allowed by default
- Default:
[]
allowHalfWidthExclamation:boolean- allow to use !
- Default:
false
allowFullWidthExclamation:boolean- allow to use !
- Default:
false
allowHalfWidthQuestion:boolean- allow to use ?
- Default:
false
allowFullWidthQuestion:boolean- allow to use ?
- Default:
false
{
"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
}
}
}Changelog
See Releases page.
Running tests
Install devDependencies and Run npm test:
npm i -d && npm testContributing
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
Author
License
MIT © azu