Socket
Socket
Sign inDemoInstall

eslint-plugin-jest

Package Overview
Dependencies
Maintainers
11
Versions
325
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-plugin-jest - npm Package Compare versions

Comparing version 24.4.0 to 24.4.1

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [24.4.1](https://github.com/jest-community/eslint-plugin-jest/compare/v24.4.0...v24.4.1) (2021-09-17)
### Bug Fixes
* mark rules that suggest fixes with `hasSuggestion` for ESLint v8 ([#898](https://github.com/jest-community/eslint-plugin-jest/issues/898)) ([ec0a21b](https://github.com/jest-community/eslint-plugin-jest/commit/ec0a21b0d98d043a9949138e495814e0935d5e31))
# [24.4.0](https://github.com/jest-community/eslint-plugin-jest/compare/v24.3.7...v24.4.0) (2021-07-21)

@@ -2,0 +9,0 @@

3

lib/rules/no-done-callback.js

@@ -43,3 +43,4 @@ "use strict";

schema: [],
type: 'suggestion'
type: 'suggestion',
hasSuggestion: true
},

@@ -46,0 +47,0 @@ defaultOptions: [],

@@ -44,3 +44,4 @@ "use strict";

schema: [],
type: 'suggestion'
type: 'suggestion',
hasSuggestion: true
},

@@ -47,0 +48,0 @@ defaultOptions: [],

@@ -42,2 +42,3 @@ "use strict";

type: 'suggestion',
hasSuggestion: true,
schema: [{

@@ -44,0 +45,0 @@ type: 'object',

@@ -24,3 +24,4 @@ "use strict";

type: 'suggestion',
schema: []
schema: [],
hasSuggestion: true
},

@@ -27,0 +28,0 @@ defaultOptions: [],

@@ -64,4 +64,3 @@ "use strict";

*/
const isTemplateLiteral = (node, value) => node.type === _experimentalUtils.AST_NODE_TYPES.TemplateLiteral && node.quasis.length === 1 && ( // bail out if not simple
value === undefined || node.quasis[0].value.raw === value);
const isTemplateLiteral = (node, value) => node.type === _experimentalUtils.AST_NODE_TYPES.TemplateLiteral && node.quasis.length === 1 && (value === undefined || node.quasis[0].value.raw === value);

@@ -68,0 +67,0 @@ /**

{
"name": "eslint-plugin-jest",
"version": "24.4.0",
"version": "24.4.1",
"description": "Eslint rules for Jest",

@@ -95,3 +95,3 @@ "keywords": [

"@types/dedent": "^0.7.0",
"@types/jest": "^26.0.0",
"@types/jest": "^27.0.0",
"@types/node": "^14.0.0",

@@ -122,4 +122,5 @@ "@types/prettier": "^2.0.0",

"semantic-release": "^17.0.7",
"semver": "^7.3.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.0"
"typescript": "^4.4.0"
},

@@ -140,3 +141,7 @@ "peerDependencies": {

"branches": [
"main"
"main",
{
"name": "next",
"prerelease": true
}
],

@@ -143,0 +148,0 @@ "plugins": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc