@ridedott/eslint-plugin 1.6.331 → 1.6.334
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 +29 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
## [1.6.334](https://github.com/ridedott/eslint-plugin/compare/v1.6.333...v1.6.334) (2022-06-20)
|
|
2
|
+
|
|
3
|
+
### Chores
|
|
4
|
+
|
|
5
|
+
- **deps-dev:** bump lint-staged from 13.0.1 to 13.0.2
|
|
6
|
+
([d5785a8](https://github.com/ridedott/eslint-plugin/commit/d5785a8e6d337d5c84406e04c97cc06657dc12e8))
|
|
7
|
+
- **deps-dev:** bump prettier from 2.7.0 to 2.7.1
|
|
8
|
+
([4bb2dfd](https://github.com/ridedott/eslint-plugin/commit/4bb2dfd88a21814f93644339627ca07c45f958e9))
|
|
9
|
+
- **deps-dev:** bump typescript from 4.7.3 to 4.7.4
|
|
10
|
+
([249c294](https://github.com/ridedott/eslint-plugin/commit/249c2948efaed71a7ae87a0a00c05294d8e10451))
|
|
11
|
+
- **deps:** bump ridedott/release-me-action from 3.6.44 to 3.6.45
|
|
12
|
+
([19379e6](https://github.com/ridedott/eslint-plugin/commit/19379e68a26870433bce1ab3ea3167ddbcff6fe3))
|
|
13
|
+
|
|
14
|
+
## [1.6.333](https://github.com/ridedott/eslint-plugin/compare/v1.6.332...v1.6.333) (2022-06-16)
|
|
15
|
+
|
|
16
|
+
### Chores
|
|
17
|
+
|
|
18
|
+
- **deps-dev:** bump prettier from 2.6.2 to 2.7.0
|
|
19
|
+
([5981267](https://github.com/ridedott/eslint-plugin/commit/59812676be07abf3a9494cd06598ff154b30222b))
|
|
20
|
+
- **deps:** bump ridedott/release-me-action from 3.6.43 to 3.6.44
|
|
21
|
+
([9bd1710](https://github.com/ridedott/eslint-plugin/commit/9bd17105ccf692b9642d1df79c0d5f9580ed389b))
|
|
22
|
+
|
|
23
|
+
## [1.6.332](https://github.com/ridedott/eslint-plugin/compare/v1.6.331...v1.6.332) (2022-06-14)
|
|
24
|
+
|
|
25
|
+
### Chores
|
|
26
|
+
|
|
27
|
+
- **deps:** bump @typescript-eslint/utils from 5.27.1 to 5.28.0
|
|
28
|
+
([1aefb5d](https://github.com/ridedott/eslint-plugin/commit/1aefb5daaf7b3baf97367816688928499ce361ca))
|
|
29
|
+
|
|
1
30
|
## [1.6.331](https://github.com/ridedott/eslint-plugin/compare/v1.6.330...v1.6.331) (2022-06-14)
|
|
2
31
|
|
|
3
32
|
### Chores
|
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@typescript-eslint/parser": "^5.28.0",
|
|
9
|
-
"@typescript-eslint/utils": "^5.
|
|
9
|
+
"@typescript-eslint/utils": "^5.28.0"
|
|
10
10
|
},
|
|
11
11
|
"description": "ESLint plugin for custom rules.",
|
|
12
12
|
"devDependencies": {
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"eslint": "^7.32.0",
|
|
21
21
|
"husky": "^8.0.1",
|
|
22
22
|
"jest": "^26.6.3",
|
|
23
|
-
"lint-staged": "^13.0.
|
|
23
|
+
"lint-staged": "^13.0.2",
|
|
24
24
|
"npm-run-all": "^4.1.5",
|
|
25
|
-
"prettier": "^2.
|
|
25
|
+
"prettier": "^2.7.1",
|
|
26
26
|
"ts-jest": "^26.5.6",
|
|
27
27
|
"ts-node": "^10.8.1",
|
|
28
|
-
"typescript": "^4.7.
|
|
28
|
+
"typescript": "^4.7.4"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">= 12"
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"test:watch": "jest --watch --verbose false",
|
|
78
78
|
"types": "tsc --noEmit"
|
|
79
79
|
},
|
|
80
|
-
"version": "1.6.
|
|
80
|
+
"version": "1.6.334"
|
|
81
81
|
}
|