iwamatsu0430 / textlint-rule-doubled-spaces

textlint rule for check doubled spaces in sentence.
MIT License
1 stars 1 forks source link

textlint-rule-doubled-spaces

Node.js CI npm version textlint rule

textlint rule for check doubled spaces in sentence.

Example

OK:

Apple Pen
Pen Pineapple Apple Pen

NG:

Apple  Pen
Pen  Pineapple   Apple  Pen

Install

Install with npm:

npm install textlint-rule-doubled-spaces

Usage

Via .textlintrc(Recommended)

{
    "rules": {
        "doubled-spaces": true
    }
}

Via CLI

textlint --rule doubled-spaces README.md

Options

{
  allow: [
    "/RegExp/"
  ]
}

Build

Builds source codes for publish to the lib folder. You can write ES2015+ source codes in src/ folder.

npm run build

Tests

Run test code in test folder. Test textlint rule by textlint-tester.

npm test

Author

License

MIT © iwamatsu0430