eslint-plugin-jest 28.10.0 → 28.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -359,7 +359,7 @@ Manually fixable by
359
359
  | [padding-around-before-each-blocks](docs/rules/padding-around-before-each-blocks.md) | Enforce padding around `beforeEach` blocks | | | 🔧 | |
360
360
  | [padding-around-describe-blocks](docs/rules/padding-around-describe-blocks.md) | Enforce padding around `describe` blocks | | | 🔧 | |
361
361
  | [padding-around-expect-groups](docs/rules/padding-around-expect-groups.md) | Enforce padding around `expect` groups | | | 🔧 | |
362
- | [padding-around-test-blocks](docs/rules/padding-around-test-blocks.md) | Enforce padding around afterAll blocks | | | 🔧 | |
362
+ | [padding-around-test-blocks](docs/rules/padding-around-test-blocks.md) | Enforce padding around `test` and `it` blocks | | | 🔧 | |
363
363
  | [prefer-called-with](docs/rules/prefer-called-with.md) | Suggest using `toBeCalledWith()` or `toHaveBeenCalledWith()` | | | | |
364
364
  | [prefer-comparison-matcher](docs/rules/prefer-comparison-matcher.md) | Suggest using the built-in comparison matchers | | | 🔧 | |
365
365
  | [prefer-each](docs/rules/prefer-each.md) | Prefer using `.each` rather than manual loops | | | | |
@@ -1,4 +1,4 @@
1
- # Enforce padding around afterAll blocks (`padding-around-test-blocks`)
1
+ # Enforce padding around `test` and `it` blocks (`padding-around-test-blocks`)
2
2
 
3
3
  🔧 This rule is automatically fixable by the
4
4
  [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix).
@@ -14,4 +14,4 @@ const config = exports.config = [{
14
14
  prevStatementType: [_padding.StatementType.TestToken, _padding.StatementType.ItToken, _padding.StatementType.FitToken, _padding.StatementType.XitToken, _padding.StatementType.XtestToken],
15
15
  nextStatementType: _padding.StatementType.Any
16
16
  }];
17
- var _default = exports.default = (0, _padding.createPaddingRule)(__filename, 'Enforce padding around afterAll blocks', config);
17
+ var _default = exports.default = (0, _padding.createPaddingRule)(__filename, 'Enforce padding around `test` and `it` blocks', config);
package/package.json CHANGED
@@ -1,13 +1,20 @@
1
1
  {
2
2
  "name": "eslint-plugin-jest",
3
- "version": "28.10.0",
3
+ "version": "28.10.1",
4
4
  "description": "ESLint rules for Jest",
5
5
  "keywords": [
6
6
  "eslint",
7
7
  "eslintplugin",
8
8
  "eslint-plugin"
9
9
  ],
10
- "repository": "jest-community/eslint-plugin-jest",
10
+ "homepage": "https://github.com/jest-community/eslint-plugin-jest#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/jest-community/eslint-plugin-jest/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/jest-community/eslint-plugin-jest.git"
17
+ },
11
18
  "license": "MIT",
12
19
  "author": {
13
20
  "name": "Jonathan Kim",
@@ -30,8 +37,8 @@
30
37
  "prettier:check": "prettier --check 'docs/**/*.md' README.md '.github/**' package.json tsconfig.json src/globals.json .yarnrc.yml",
31
38
  "prettier:write": "prettier --write 'docs/**/*.md' README.md '.github/**' package.json tsconfig.json src/globals.json .yarnrc.yml",
32
39
  "postpublish": "pinst --enable",
33
- "test": "jest",
34
40
  "regenerate-docs": "yarn prepack && eslint-doc-generator",
41
+ "test": "jest",
35
42
  "typecheck": "tsc -p ."
36
43
  },
37
44
  "commitlint": {
@@ -84,7 +91,7 @@
84
91
  "babel-plugin-replace-ts-export-assignment": "^0.0.2",
85
92
  "dedent": "^1.5.0",
86
93
  "eslint": "^7.0.0 || ^8.0.0",
87
- "eslint-config-prettier": "^9.0.0",
94
+ "eslint-config-prettier": "^10.0.0",
88
95
  "eslint-doc-generator": "^1.0.0",
89
96
  "eslint-plugin-eslint-plugin": "^6.0.0",
90
97
  "eslint-plugin-import": "^2.25.1",
@@ -93,11 +100,11 @@
93
100
  "eslint-remote-tester": "^3.0.0",
94
101
  "eslint-remote-tester-repositories": "~1.0.0",
95
102
  "husky": "^9.0.1",
96
- "is-ci": "^3.0.0",
103
+ "is-ci": "^4.0.0",
97
104
  "jest": "^29.0.0",
98
105
  "jest-runner-eslint": "^2.0.0",
99
106
  "lint-staged": "^13.0.3",
100
- "markdown-link-check": "^3.10.2",
107
+ "markdown-link-check": "~3.12.0",
101
108
  "pinst": "^3.0.0",
102
109
  "prettier": "^3.0.0",
103
110
  "rimraf": "^5.0.0",