Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ReactiveX/rxjs-tslint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rx-ts/rxjs-tslint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: develop
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Dec 9, 2020

  1. Copy the full SHA
    39fa4d9 View commit details
  2. chore: rebase upstream

    JounQin committed Dec 9, 2020
    Copy the full SHA
    efcd0d6 View commit details
Showing with 296 additions and 262 deletions.
  1. +4 −0 .gitpod.yml
  2. +3 −3 README.md
  3. +280 −250 package-lock.json
  4. +9 −9 package.json
4 changes: 4 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
image: gitpod/workspace-full

tasks:
- init: npm install && npm run build
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RxJS TSLint
# RxJS TSLint [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/rx-ts/rxjs-tslint)

TSLint rules for rxjs.

@@ -18,7 +18,7 @@ This repository provides the following rules:
Using the current set of rules allows you to automatically migrate your project which uses RxJS 5 to RxJS 6. Here's how you can perform the automatic migration:

```bash
npm i -g rxjs-tslint
npm i -g @rxts/rxjs-tslint
rxjs-5-to-6-migrate -p [PATH_TO_TSCONFIG]
```

@@ -39,7 +39,7 @@ To use the exported rules without `rxjs-5-to-6-migrate`, use the `rulesDirectory
```json
{
"rulesDirectory": [
"node_modules/rxjs-tslint"
"node_modules/@rxts/rxjs-tslint"
],
"rules": {
"rxjs-collapse-imports": true,
Loading