@cabify/eslint-config 1.2.0 → 2.0.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/CHANGELOG.md +15 -6
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -7,33 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
##
|
|
10
|
+
## [2.0.1] - 2023-07-12
|
|
11
11
|
|
|
12
|
-
-
|
|
12
|
+
- Bumped prettier to v3 and eslint-plugin-prettier to v5 because of [compatibility issues between them](https://github.com/prettier/eslint-plugin-prettier/issues/562).
|
|
13
|
+
|
|
14
|
+
## [2.0.0] - 2023-06-19
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Breaking change in how type imports are sorted [eslint-plugin-simple-import-sort@10.0.0](https://github.com/lydell/eslint-plugin-simple-import-sort/blob/main/CHANGELOG.md#version-1000-2023-01-27).
|
|
19
|
+
- Just run `eslint . --fix`.
|
|
20
|
+
- Bumped dependencies.
|
|
21
|
+
- Bumped `eslint-plugin-import` dependencies [after security alert](https://github.com/cabify/eslint-config/security/dependabot/2).
|
|
13
22
|
|
|
14
23
|
## [1.1.2] - 2022-10-24
|
|
15
24
|
|
|
16
25
|
### Changed
|
|
17
26
|
|
|
18
|
-
- Bump dependencies
|
|
27
|
+
- Bump dependencies
|
|
19
28
|
|
|
20
29
|
## [1.0.3] - 2022-07-22
|
|
21
30
|
|
|
22
31
|
### Changed
|
|
23
32
|
|
|
24
|
-
- Bump dependencies
|
|
33
|
+
- Bump dependencies
|
|
25
34
|
|
|
26
35
|
## [1.0.2] - 2021-11-25
|
|
27
36
|
|
|
28
37
|
### Changed
|
|
29
38
|
|
|
30
|
-
- Bump dependencies
|
|
39
|
+
- Bump dependencies
|
|
31
40
|
|
|
32
41
|
## [1.0.1] - 2021-11-15
|
|
33
42
|
|
|
34
43
|
### Changed
|
|
35
44
|
|
|
36
|
-
- Bump dependencies
|
|
45
|
+
- Bump dependencies
|
|
37
46
|
|
|
38
47
|
## [1.0.0] - 2021-10-27
|
|
39
48
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cabify/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "ESLint config for Cabify Javascript projects",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "echo 'No build to perform'",
|
|
@@ -40,26 +40,26 @@
|
|
|
40
40
|
"./recommended": "./recommended.js"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
44
|
-
"@typescript-eslint/parser": "^5.
|
|
43
|
+
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
44
|
+
"@typescript-eslint/parser": "^5.61.0",
|
|
45
45
|
"confusing-browser-globals": "^1.0.10",
|
|
46
|
-
"eslint-config-prettier": "^8.
|
|
47
|
-
"eslint-plugin-import": "^2.
|
|
48
|
-
"eslint-plugin-jest": "^27.
|
|
49
|
-
"eslint-plugin-jsx-a11y": "^6.
|
|
46
|
+
"eslint-config-prettier": "^8.8.0",
|
|
47
|
+
"eslint-plugin-import": "^2.27.5",
|
|
48
|
+
"eslint-plugin-jest": "^27.2.2",
|
|
49
|
+
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
50
50
|
"eslint-plugin-lodash": "^7.3.0",
|
|
51
|
-
"eslint-plugin-prettier": "^
|
|
52
|
-
"eslint-plugin-react": "^7.
|
|
51
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
52
|
+
"eslint-plugin-react": "^7.32.2",
|
|
53
53
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
54
|
-
"eslint-plugin-simple-import-sort": "^
|
|
54
|
+
"eslint-plugin-simple-import-sort": "^10.0.0"
|
|
55
55
|
},
|
|
56
56
|
"peerDependencies": {
|
|
57
57
|
"eslint": ">= 8.0.1",
|
|
58
58
|
"prettier": ">= 2.2.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"
|
|
62
|
-
"
|
|
61
|
+
"eslint": "8.44.0",
|
|
62
|
+
"prettier": "3.0.0"
|
|
63
63
|
},
|
|
64
64
|
"publishConfig": {
|
|
65
65
|
"access": "public"
|