@eslint-sets/eslint-config 4.1.0-beta.6 → 4.2.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/README.md +1 -7
- package/index.js +1 -1
- package/package.json +13 -14
package/README.md
CHANGED
|
@@ -7,8 +7,6 @@ Eslint config sets
|
|
|
7
7
|
[![NPM version][npm-image]][npm-url]
|
|
8
8
|
[![Codacy Badge][codacy-image]][codacy-url]
|
|
9
9
|
[![Test coverage][codecov-image]][codecov-url]
|
|
10
|
-
[![npm download][download-image]][download-url]
|
|
11
|
-
[![gzip][gzip-image]][gzip-url]
|
|
12
10
|
[![License][license-image]][license-url]
|
|
13
11
|
|
|
14
12
|
[![Sonar][sonar-image]][sonar-url]
|
|
@@ -42,7 +40,7 @@ module.exports = {
|
|
|
42
40
|
|
|
43
41
|
## Issues & Support
|
|
44
42
|
|
|
45
|
-
Please open an issue [here](https://github.com/saqqdy
|
|
43
|
+
Please open an issue [here](https://github.com/saqqdy/eslint-sets/issues).
|
|
46
44
|
|
|
47
45
|
## License
|
|
48
46
|
|
|
@@ -54,10 +52,6 @@ Please open an issue [here](https://github.com/saqqdy/@eslint-sets/eslint-config
|
|
|
54
52
|
[codacy-url]: https://www.codacy.com/gh/saqqdy/@eslint-sets/eslint-config/dashboard?utm_source=github.com&utm_medium=referral&utm_content=saqqdy/@eslint-sets/eslint-config&utm_campaign=Badge_Grade
|
|
55
53
|
[codecov-image]: https://img.shields.io/codecov/c/github/saqqdy/@eslint-sets/eslint-config.svg?style=flat-square
|
|
56
54
|
[codecov-url]: https://codecov.io/github/saqqdy/@eslint-sets/eslint-config?branch=master
|
|
57
|
-
[download-image]: https://img.shields.io/npm/dm/@eslint-sets/eslint-config.svg?style=flat-square
|
|
58
|
-
[download-url]: https://npmjs.org/package/@eslint-sets/eslint-config
|
|
59
|
-
[gzip-image]: http://img.badgesize.io/https://unpkg.com/@eslint-sets/eslint-config/index.js?compression=gzip&label=gzip%20size:%20JS
|
|
60
|
-
[gzip-url]: http://img.badgesize.io/https://unpkg.com/@eslint-sets/eslint-config/index.js?compression=gzip&label=gzip%20size:%20JS
|
|
61
55
|
[license-image]: https://img.shields.io/badge/License-MIT-blue.svg
|
|
62
56
|
[license-url]: LICENSE
|
|
63
57
|
[sonar-image]: https://sonarcloud.io/api/project_badges/quality_gate?project=saqqdy_eslint-sets
|
package/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eslint-sets/eslint-config",
|
|
3
3
|
"description": "Eslint config all sets",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.2.0",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"scripts": {},
|
|
7
7
|
"files": [
|
|
@@ -18,41 +18,40 @@
|
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@babel/eslint-parser": "^7.19.1",
|
|
21
|
-
"@eslint-sets/eslint-config-react": "4.
|
|
22
|
-
"@eslint-sets/eslint-config-vue": "4.
|
|
23
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
24
|
-
"@typescript-eslint/parser": "^5.
|
|
21
|
+
"@eslint-sets/eslint-config-react": "4.2.0",
|
|
22
|
+
"@eslint-sets/eslint-config-vue": "4.2.0",
|
|
23
|
+
"@typescript-eslint/eslint-plugin": "^5.49.0",
|
|
24
|
+
"@typescript-eslint/parser": "^5.49.0",
|
|
25
25
|
"eslint-config-prettier": "^8.6.0",
|
|
26
26
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
27
27
|
"eslint-plugin-html": "^7.1.0",
|
|
28
|
-
"eslint-plugin-import": "^2.27.
|
|
29
|
-
"eslint-plugin-jsdoc": "^39.
|
|
28
|
+
"eslint-plugin-import": "^2.27.5",
|
|
29
|
+
"eslint-plugin-jsdoc": "^39.7.4",
|
|
30
30
|
"eslint-plugin-jsonc": "^2.6.0",
|
|
31
31
|
"eslint-plugin-markdown": "^3.0.0",
|
|
32
32
|
"eslint-plugin-n": "^15.6.1",
|
|
33
33
|
"eslint-plugin-prettier": "^4.2.1",
|
|
34
34
|
"eslint-plugin-promise": "^6.1.1",
|
|
35
|
-
"eslint-plugin-react": "^7.32.
|
|
35
|
+
"eslint-plugin-react": "^7.32.2",
|
|
36
36
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
37
37
|
"eslint-plugin-tsdoc": "^0.2.17",
|
|
38
38
|
"eslint-plugin-unicorn": "^40.1.0",
|
|
39
39
|
"eslint-plugin-vitest-globals": "^1.2.0",
|
|
40
|
-
"eslint-plugin-vue": "^9.
|
|
41
|
-
"eslint-plugin-vue-scoped-css": "^2.
|
|
40
|
+
"eslint-plugin-vue": "^9.9.0",
|
|
41
|
+
"eslint-plugin-vue-scoped-css": "^2.4.0",
|
|
42
42
|
"eslint-plugin-yml": "^1.4.0",
|
|
43
43
|
"jsonc-eslint-parser": "^2.1.0",
|
|
44
44
|
"vue-eslint-parser": "^9.1.0",
|
|
45
45
|
"yaml-eslint-parser": "^1.1.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"eslint": "^8.
|
|
48
|
+
"eslint": "^8.33.0",
|
|
49
49
|
"prettier": "^2.8.3",
|
|
50
|
-
"typescript": "~4.9.
|
|
50
|
+
"typescript": "~4.9.5"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"eslint": ">=7.4.0",
|
|
54
|
-
"prettier": ">=2.0.0"
|
|
55
|
-
"typescript": ">=3.9.0"
|
|
54
|
+
"prettier": ">=2.0.0"
|
|
56
55
|
},
|
|
57
56
|
"keywords": [
|
|
58
57
|
"eslint-sets",
|