Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timdeschryver/eslint-plugin-rxjs-fixers
https://github.com/timdeschryver/eslint-plugin-rxjs-fixers
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/timdeschryver/eslint-plugin-rxjs-fixers
- Owner: timdeschryver
- Created: 2020-04-04T16:29:02.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-26T11:07:47.000Z (almost 3 years ago)
- Last Synced: 2024-10-10T20:19:21.358Z (3 months ago)
- Language: TypeScript
- Size: 771 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fixers for RxJS v7
## How to use
### Via npx
```bash
$ npx eslint-plugin-rxjs-fixers-poc
```> This will install eslint and @typescript-eslint/parser if needed, and removes them afterwards
Recursively fixes every (`.js` and `.ts`) file in the current directory.
### Via ESLint
```bash
$ npm i eslint-plugin-rxjs-fixers-poc --save-dev
```Add the following config to your ESLint config:
```json
{
"plugins": ["rxjs-fixers-poc"],
"extends": ["plugin:rxjs-fixers-poc/all"]
}
```