eslint-config-seek 9.0.0 → 10.0.0
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/CHANGELOG.md +15 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# eslint-config-seek
|
|
2
2
|
|
|
3
|
+
## 10.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- eslint-plugin-jest 27 ([#79](https://github.com/seek-oss/eslint-config-seek/pull/79))
|
|
8
|
+
|
|
9
|
+
This major release includes breaking changes. See the [release note](https://github.com/jest-community/eslint-plugin-jest/releases/tag/v27.0.0) for more information.
|
|
10
|
+
|
|
11
|
+
The `jest/no-alias-methods` rule is now [enforced](https://github.com/jest-community/eslint-plugin-jest/pull/1221) to discourage usage of alias methods that will be [removed in Jest 30](https://github.com/facebook/jest/issues/13164).
|
|
12
|
+
|
|
13
|
+
```diff
|
|
14
|
+
- .toBeCalled()
|
|
15
|
+
+ .toHaveBeenCalled()
|
|
16
|
+
```
|
|
17
|
+
|
|
3
18
|
## 9.0.0
|
|
4
19
|
|
|
5
20
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-seek",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "10.0.0",
|
|
4
4
|
"description": "ESLint configuration used by SEEK",
|
|
5
5
|
"main": ".eslintrc.js",
|
|
6
6
|
"repository": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"eslint-import-resolver-node": "^0.3.6",
|
|
29
29
|
"eslint-plugin-cypress": "^2.12.1",
|
|
30
30
|
"eslint-plugin-import": "^2.25.4",
|
|
31
|
-
"eslint-plugin-jest": "^
|
|
31
|
+
"eslint-plugin-jest": "^27.0.1",
|
|
32
32
|
"eslint-plugin-react": "^7.29.4",
|
|
33
33
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
34
34
|
"find-root": "^1.1.0"
|