eslint-plugin-promise
Advanced tools
Comparing version 3.3.2 to 3.4.0-0
@@ -0,1 +1,5 @@ | ||
## 3.3.2 | ||
- Removed eslint from peerDeps | ||
## 3.3.1 | ||
@@ -2,0 +6,0 @@ |
@@ -9,3 +9,6 @@ module.exports = { | ||
'prefer-await-to-then': require('./rules/prefer-await-to-then'), | ||
'no-native': require('./rules/no-native') | ||
'no-native': require('./rules/no-native'), | ||
'no-callback-in-promise': require('./rules/no-callback-in-promise'), | ||
'no-promise-in-callback': require('./rules/no-promise-in-callback'), | ||
'no-nesting': require('./rules/no-nesting') | ||
}, | ||
@@ -12,0 +15,0 @@ rulesConfig: { |
{ | ||
"name": "eslint-plugin-promise", | ||
"version": "3.3.2", | ||
"version": "3.4.0-0", | ||
"description": "Enforce best practices for JavaScript promises", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -62,2 +62,5 @@ # eslint-plugin-promise | ||
- `no-native` In an ES5 environment, make sure to create a `Promise` constructor before using. | ||
- `no-nesting` Avoid nested .then() or .catch() statements | ||
- `no-promise-in-callback` Avoid using promises inside of callbacks | ||
- `no-callback-in-promise` Avoid calling `cb()` inside of a `then()` | ||
@@ -64,0 +67,0 @@ ### Async/Await Rules |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23611
21
474
207
2