@ridedott/eslint-plugin 1.6.339 → 1.6.342
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 +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
## [1.6.342](https://github.com/ridedott/eslint-plugin/compare/v1.6.341...v1.6.342) (2022-07-04)
|
|
2
|
+
|
|
3
|
+
### Chores
|
|
4
|
+
|
|
5
|
+
- **deps-dev:** bump ts-node from 10.8.1 to 10.8.2
|
|
6
|
+
([e33efed](https://github.com/ridedott/eslint-plugin/commit/e33efed15cc7a00df5b9ba1bb056f94b6c731b95))
|
|
7
|
+
- **deps:** bump @typescript-eslint/utils from 5.30.0 to 5.30.4
|
|
8
|
+
([73660a8](https://github.com/ridedott/eslint-plugin/commit/73660a8b773d2e22130eb3602a5e119a4c55f7f8))
|
|
9
|
+
|
|
10
|
+
## [1.6.341](https://github.com/ridedott/eslint-plugin/compare/v1.6.340...v1.6.341) (2022-06-28)
|
|
11
|
+
|
|
12
|
+
### Chores
|
|
13
|
+
|
|
14
|
+
- **deps:** bump @typescript-eslint/parser from 5.29.0 to 5.30.0
|
|
15
|
+
([afa1073](https://github.com/ridedott/eslint-plugin/commit/afa1073a44b576aa96e96c2fb73ad6f26ddd221f))
|
|
16
|
+
|
|
17
|
+
## [1.6.340](https://github.com/ridedott/eslint-plugin/compare/v1.6.339...v1.6.340) (2022-06-28)
|
|
18
|
+
|
|
19
|
+
### Chores
|
|
20
|
+
|
|
21
|
+
- **deps-dev:** bump @commitlint/cli from 17.0.2 to 17.0.3
|
|
22
|
+
([9823cef](https://github.com/ridedott/eslint-plugin/commit/9823cefb96ce08d1ef1acb157654a9ff7a34b900))
|
|
23
|
+
- **deps-dev:** bump @commitlint/config-conventional
|
|
24
|
+
([10708ac](https://github.com/ridedott/eslint-plugin/commit/10708ac80a18a6d2b4b4b35901b19a601215769c))
|
|
25
|
+
- **deps-dev:** bump lint-staged from 13.0.2 to 13.0.3
|
|
26
|
+
([774b69b](https://github.com/ridedott/eslint-plugin/commit/774b69bf8a981364e8164473397432ed91e157ee))
|
|
27
|
+
- **deps:** bump @typescript-eslint/utils from 5.29.0 to 5.30.0
|
|
28
|
+
([04c27c7](https://github.com/ridedott/eslint-plugin/commit/04c27c725e05f8295880b7e51c9c3a4db3f5ac7b))
|
|
29
|
+
|
|
1
30
|
## [1.6.339](https://github.com/ridedott/eslint-plugin/compare/v1.6.338...v1.6.339) (2022-06-23)
|
|
2
31
|
|
|
3
32
|
### Chores
|
package/package.json
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
5
5
|
}
|
|
6
6
|
},
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@typescript-eslint/parser": "^5.
|
|
9
|
-
"@typescript-eslint/utils": "^5.
|
|
8
|
+
"@typescript-eslint/parser": "^5.30.0",
|
|
9
|
+
"@typescript-eslint/utils": "^5.30.4"
|
|
10
10
|
},
|
|
11
11
|
"description": "ESLint plugin for custom rules.",
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@commitlint/cli": "^17.0.
|
|
14
|
-
"@commitlint/config-conventional": "^17.0.
|
|
13
|
+
"@commitlint/cli": "^17.0.3",
|
|
14
|
+
"@commitlint/config-conventional": "^17.0.3",
|
|
15
15
|
"@ridedott/eslint-config": "^2.13.12",
|
|
16
16
|
"@types/jest": "^27.5.0",
|
|
17
17
|
"@types/node": "^12.20.11",
|
|
@@ -20,11 +20,11 @@
|
|
|
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.3",
|
|
24
24
|
"npm-run-all": "^4.1.5",
|
|
25
25
|
"prettier": "^2.7.1",
|
|
26
26
|
"ts-jest": "^26.5.6",
|
|
27
|
-
"ts-node": "^10.8.
|
|
27
|
+
"ts-node": "^10.8.2",
|
|
28
28
|
"typescript": "^4.7.4"
|
|
29
29
|
},
|
|
30
30
|
"engines": {
|
|
@@ -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.342"
|
|
81
81
|
}
|