Previously, I utilized the rxjs-tslint-rules
package to identify RxJS-related issues in my projects. This package was included in the devDependencies
section of my projects' package.json
files.
Now, there is a new rxjs-tslint
package that introduces additional rules tailored to RxJS 6 and includes the rxjs-5-to-6-migrate
tool.
After migrating, if I wish to continue using the following:
rxjs-collapse-imports
rxjs-pipeable-operators-only
rxjs-no-static-observable-methods
rxjs-proper-imports
rules with TSLint, do I need to manually add them to my tslint.json
file and include the rxjs-tslint
package in the devDependencies
? Or is the rxjs-tslint
package intended as a one-time migration aid with rules already covered by the comprehensive rxjs-tslint-rules
package?