An open API service indexing awesome lists of open source software.

https://github.com/tani/textlint-rule-lsp

textlint rule for langauge server protocol
https://github.com/tani/textlint-rule-lsp

Last synced: about 2 months ago
JSON representation

textlint rule for langauge server protocol

Awesome Lists containing this project

README

        

# Textlint Rule LSP

Textlint rule to check texts by language servers.

## Install

Install with [npm](https://www.npmjs.com/):

npm install textlint-rule-lsp

## Usage

Via `.textlintrc`(Recommended)

```json
{
"rules": {
"lsp": true
}
}
```

Via CLI

```
textlint --rule lsp 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](https://github.com/textlint/textlint-tester).

npm test

## License

MIT © TANIGUCHI Masaya