Gathering detailed insights and metrics for @jambit/eslint-plugin-typed-redux-saga
Gathering detailed insights and metrics for @jambit/eslint-plugin-typed-redux-saga
Gathering detailed insights and metrics for @jambit/eslint-plugin-typed-redux-saga
Gathering detailed insights and metrics for @jambit/eslint-plugin-typed-redux-saga
These are eslint rules to help with typed-redux-saga
npm install @jambit/eslint-plugin-typed-redux-saga
Typescript
Module System
Node Version
NPM Version
99.8
Supply Chain
82.8
Quality
77.8
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
1,427,352
Last Day
8,823
Last Week
41,497
Last Month
192,829
Last Year
744,347
MIT License
17 Stars
13 Commits
3 Forks
4 Watchers
2 Branches
3 Contributors
Updated on Oct 03, 2023
Minified
Minified + Gzipped
Latest Version
0.4.0
Package Id
@jambit/eslint-plugin-typed-redux-saga@0.4.0
Unpacked Size
8.60 kB
Size
2.94 kB
File Count
6
NPM Version
6.14.12
Node Version
14.16.1
Cumulative downloads
Total Downloads
Last Day
-15.2%
8,823
Compared to previous day
Last Week
-29.9%
41,497
Compared to previous week
Last Month
247%
192,829
Compared to previous month
Last Year
64.7%
744,347
Compared to previous year
No dependencies detected.
These are eslint rules to help with typed-redux-saga.
It includes an auto-fix option, so you can use it to easily convert your codebase from redux-saga to typed-redux-saga! (As always, you should double-check if the auto-fixer did its job correctly before committing the changes!)
Install the plugin via npm:
npm i -D @jambit/eslint-plugin-typed-redux-saga
Add it to your eslint configuration as seen below.
Keep in mind, that you don't want to run these rules in your test files, since there you most likely need to use the imports from redux-saga/effects
.
1{ 2 "plugins": ["@jambit/typed-redux-saga"], 3 "rules": {}, 4 "overrides": [ 5 { 6 "files": ["./**/*.ts"], 7 "excludedFiles": ["./**/*.spec.ts"], 8 "rules": { 9 "@jambit/typed-redux-saga/use-typed-effects": "error", 10 "@jambit/typed-redux-saga/delegate-effects": "error" 11 } 12 } 13 ] 14}
This rule ensures, that you import from typed-redux-saga
instead of redux-saga/effects
.
If you want to use the babel macro feature, this rule can be configured to use typed-redux-saga/macro
instead:
1"@jambit/typed-redux-saga/use-typed-effects": ["error", "macro"]
The second entry in the options array can be either "default" or "macro".
This rule ensures, that you use yield*
on effects from typed-redux-saga
and typed-redux-saga/macro
.
Licensed under MIT
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/10 approved changesets -- score normalized to 2
Reason
9 existing vulnerabilities detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-05-05
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More