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
- Host: GitHub
- URL: https://github.com/tani/textlint-rule-lsp
- Owner: tani
- Created: 2021-05-05T08:41:31.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-15T17:52:36.000Z (over 1 year ago)
- Last Synced: 2025-04-15T19:08:34.577Z (about 2 months ago)
- Language: TypeScript
- Size: 204 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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