@ridedott/eslint-plugin 1.6.355 → 1.7.2
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 +25 -0
- package/README.md +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
## [1.7.2](https://github.com/ridedott/eslint-plugin/compare/v1.7.1...v1.7.2) (2022-08-02)
|
|
2
|
+
|
|
3
|
+
### Chores
|
|
4
|
+
|
|
5
|
+
- **deps:** bump @typescript-eslint/parser from 5.31.0 to 5.32.0
|
|
6
|
+
([4a0735e](https://github.com/ridedott/eslint-plugin/commit/4a0735ec4dd4cb81c5ae3c9e389ee53a03a69a43))
|
|
7
|
+
|
|
8
|
+
## [1.7.1](https://github.com/ridedott/eslint-plugin/compare/v1.7.0...v1.7.1) (2022-08-02)
|
|
9
|
+
|
|
10
|
+
### Chores
|
|
11
|
+
|
|
12
|
+
- **deps-dev:** bump cspell from 5.21.0 to 6.4.2
|
|
13
|
+
([e09b567](https://github.com/ridedott/eslint-plugin/commit/e09b56738154af712e1117bf2c29f1dd78a39463))
|
|
14
|
+
- **deps-dev:** bump cspell from 6.4.2 to 6.5.0
|
|
15
|
+
([d1a1585](https://github.com/ridedott/eslint-plugin/commit/d1a1585c10bf8dd48247cb178be9833abe75df90))
|
|
16
|
+
- **deps:** bump @typescript-eslint/utils from 5.31.0 to 5.32.0
|
|
17
|
+
([a87814c](https://github.com/ridedott/eslint-plugin/commit/a87814ce68dad62cd6f40267130028f11cfcbc4a))
|
|
18
|
+
|
|
19
|
+
# [1.7.0](https://github.com/ridedott/eslint-plugin/compare/v1.6.355...v1.7.0) (2022-07-26)
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- update node to v14
|
|
24
|
+
([2cf3c3b](https://github.com/ridedott/eslint-plugin/commit/2cf3c3b3daf6fd581819eee65ae18255f1b769f6))
|
|
25
|
+
|
|
1
26
|
## [1.6.355](https://github.com/ridedott/eslint-plugin/compare/v1.6.354...v1.6.355) (2022-07-26)
|
|
2
27
|
|
|
3
28
|
### Chores
|
package/README.md
CHANGED
|
@@ -36,7 +36,7 @@ consume this package in your project.
|
|
|
36
36
|
|
|
37
37
|
Minimal requirements to set up the project:
|
|
38
38
|
|
|
39
|
-
- [Node.js](https://nodejs.org/en)
|
|
39
|
+
- [Node.js](https://nodejs.org/en) v14, installation instructions can be found
|
|
40
40
|
on the official website, a recommended installation option is to use
|
|
41
41
|
[Node Version Manager](https://github.com/creationix/nvm#readme). It can be
|
|
42
42
|
installed in a
|
package/package.json
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
}
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@typescript-eslint/parser": "^5.
|
|
9
|
-
"@typescript-eslint/utils": "^5.
|
|
8
|
+
"@typescript-eslint/parser": "^5.32.0",
|
|
9
|
+
"@typescript-eslint/utils": "^5.32.0"
|
|
10
10
|
},
|
|
11
11
|
"description": "ESLint plugin for custom rules.",
|
|
12
12
|
"devDependencies": {
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"@commitlint/config-conventional": "^17.0.3",
|
|
15
15
|
"@ridedott/eslint-config": "^2.13.12",
|
|
16
16
|
"@types/jest": "^27.5.0",
|
|
17
|
-
"@types/node": "^
|
|
17
|
+
"@types/node": "^14.18.22",
|
|
18
18
|
"commitizen": "^4.2.5",
|
|
19
|
-
"cspell": "^5.
|
|
19
|
+
"cspell": "^6.5.0",
|
|
20
20
|
"eslint": "^7.32.0",
|
|
21
21
|
"husky": "^8.0.1",
|
|
22
22
|
"jest": "^26.6.3",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"typescript": "^4.7.4"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
31
|
-
"node": ">=
|
|
31
|
+
"node": ">= 14"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|
|
34
34
|
"lib",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"test:watch": "jest --watch --verbose false",
|
|
78
78
|
"types": "tsc --noEmit"
|
|
79
79
|
},
|
|
80
|
-
"version": "1.
|
|
80
|
+
"version": "1.7.2"
|
|
81
81
|
}
|