Detalhes do pacote

space-after-bullet-point

githubschman4ISC2.0.1

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

textlintrule

readme (leia-me)

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