space-after-bullet-point

2.0.1 • Public • Published

Space After Bullet Point

This rule will notify you if you did not add a space after a bullet point (*) in a markdown or other file.

passes:
```
    * The first bullet point

    * They second bullet point

    nextline
```

doesn't pass:
```
    * The first bullet point

    * They second bullet point
    nextline
```

```
    * The first bullet point
    * They second bullet point

    nextline
```

About

Created with create-textlint-tool as a plugin rule for textlint

Install

Install with npm:

npm install space-after-bullet-point

Usage

Via .textlintrc(Recommended)

{
    "rules": {
        "space-after-bullet-point": true
    }
}

Via CLI

textlint --rule space-after-bullet-point README.md

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

Readme

Keywords

Package Sidebar

Install

npm i space-after-bullet-point

Weekly Downloads

0

Version

2.0.1

License

ISC

Unpacked Size

5.22 kB

Total Files

5

Last publish

Collaborators

  • githubschman