@enormora/eslint-config-vue-ts 0.0.23 → 0.0.25
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/package.json +5 -5
- package/readme.md +10 -10
- package/sbom.cdx.json +25 -25
package/package.json
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
"Christian Rackerseder <github@echooff.de>"
|
|
5
5
|
],
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@typescript-eslint/parser": "8.
|
|
8
|
-
"eslint-plugin-vue": "10.9.
|
|
7
|
+
"@typescript-eslint/parser": "8.60.1",
|
|
8
|
+
"eslint-plugin-vue": "10.9.2",
|
|
9
9
|
"globals": "17.6.0",
|
|
10
|
-
"vue-eslint-parser": "10.4.
|
|
10
|
+
"vue-eslint-parser": "10.4.1"
|
|
11
11
|
},
|
|
12
12
|
"description": "Enormora’s ESLint Vue with TypeScript configuration",
|
|
13
13
|
"exports": {
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"name": "@enormora/eslint-config-vue-ts",
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@enormora/eslint-config-typescript": "0.0.
|
|
21
|
+
"@enormora/eslint-config-typescript": "0.0.41"
|
|
22
22
|
},
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
25
|
"url": "git://github.com/enormora/eslint-config.git"
|
|
26
26
|
},
|
|
27
27
|
"type": "module",
|
|
28
|
-
"version": "0.0.
|
|
28
|
+
"version": "0.0.25"
|
|
29
29
|
}
|
package/readme.md
CHANGED
|
@@ -15,17 +15,17 @@ npm install --save-dev @enormora/eslint-config-base @enormora/eslint-config-type
|
|
|
15
15
|
Create an ESLint configuration file (e.g., `eslint.config.js`) in your project and add the base and react config to the configuration array:
|
|
16
16
|
|
|
17
17
|
```javascript
|
|
18
|
-
import { baseConfig } from
|
|
19
|
-
import { vueConfig } from
|
|
18
|
+
import { baseConfig } from '@enormora/eslint-config-base';
|
|
19
|
+
import { vueConfig } from '@enormora/eslint-config-vue-ts';
|
|
20
20
|
|
|
21
21
|
export default [
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
{
|
|
23
|
+
ignores: [ 'dist/**/*' ]
|
|
24
|
+
},
|
|
25
|
+
...baseConfig,
|
|
26
|
+
{
|
|
27
|
+
...vueConfig,
|
|
28
|
+
files: [ 'src/**/*.vue' ]
|
|
29
|
+
}
|
|
30
30
|
];
|
|
31
31
|
```
|
package/sbom.cdx.json
CHANGED
|
@@ -9,57 +9,57 @@
|
|
|
9
9
|
{
|
|
10
10
|
"type": "application",
|
|
11
11
|
"name": "packtory",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.32"
|
|
13
13
|
}
|
|
14
14
|
]
|
|
15
15
|
},
|
|
16
16
|
"component": {
|
|
17
17
|
"type": "library",
|
|
18
18
|
"name": "@enormora/eslint-config-vue-ts",
|
|
19
|
-
"version": "0.0.
|
|
20
|
-
"bom-ref": "pkg:npm/@enormora/eslint-config-vue-ts@0.0.
|
|
21
|
-
"purl": "pkg:npm/@enormora/eslint-config-vue-ts@0.0.
|
|
19
|
+
"version": "0.0.25",
|
|
20
|
+
"bom-ref": "pkg:npm/@enormora/eslint-config-vue-ts@0.0.25",
|
|
21
|
+
"purl": "pkg:npm/@enormora/eslint-config-vue-ts@0.0.25"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"components": [
|
|
25
25
|
{
|
|
26
26
|
"type": "library",
|
|
27
27
|
"name": "@enormora/eslint-config-typescript",
|
|
28
|
-
"version": "0.0.
|
|
29
|
-
"bom-ref": "pkg:npm/@enormora/eslint-config-typescript@0.0.
|
|
28
|
+
"version": "0.0.41",
|
|
29
|
+
"bom-ref": "pkg:npm/@enormora/eslint-config-typescript@0.0.41",
|
|
30
30
|
"scope": "optional",
|
|
31
31
|
"licenses": [
|
|
32
32
|
{
|
|
33
33
|
"expression": "MIT"
|
|
34
34
|
}
|
|
35
35
|
],
|
|
36
|
-
"purl": "pkg:npm/@enormora/eslint-config-typescript@0.0.
|
|
36
|
+
"purl": "pkg:npm/@enormora/eslint-config-typescript@0.0.41"
|
|
37
37
|
},
|
|
38
38
|
{
|
|
39
39
|
"type": "library",
|
|
40
40
|
"name": "@typescript-eslint/parser",
|
|
41
|
-
"version": "8.
|
|
42
|
-
"bom-ref": "pkg:npm/@typescript-eslint/parser@8.
|
|
41
|
+
"version": "8.60.1",
|
|
42
|
+
"bom-ref": "pkg:npm/@typescript-eslint/parser@8.60.1",
|
|
43
43
|
"scope": "required",
|
|
44
44
|
"licenses": [
|
|
45
45
|
{
|
|
46
46
|
"expression": "MIT"
|
|
47
47
|
}
|
|
48
48
|
],
|
|
49
|
-
"purl": "pkg:npm/@typescript-eslint/parser@8.
|
|
49
|
+
"purl": "pkg:npm/@typescript-eslint/parser@8.60.1"
|
|
50
50
|
},
|
|
51
51
|
{
|
|
52
52
|
"type": "library",
|
|
53
53
|
"name": "eslint-plugin-vue",
|
|
54
|
-
"version": "10.9.
|
|
55
|
-
"bom-ref": "pkg:npm/eslint-plugin-vue@10.9.
|
|
54
|
+
"version": "10.9.2",
|
|
55
|
+
"bom-ref": "pkg:npm/eslint-plugin-vue@10.9.2",
|
|
56
56
|
"scope": "required",
|
|
57
57
|
"licenses": [
|
|
58
58
|
{
|
|
59
59
|
"expression": "MIT"
|
|
60
60
|
}
|
|
61
61
|
],
|
|
62
|
-
"purl": "pkg:npm/eslint-plugin-vue@10.9.
|
|
62
|
+
"purl": "pkg:npm/eslint-plugin-vue@10.9.2"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"type": "library",
|
|
@@ -77,42 +77,42 @@
|
|
|
77
77
|
{
|
|
78
78
|
"type": "library",
|
|
79
79
|
"name": "vue-eslint-parser",
|
|
80
|
-
"version": "10.4.
|
|
81
|
-
"bom-ref": "pkg:npm/vue-eslint-parser@10.4.
|
|
80
|
+
"version": "10.4.1",
|
|
81
|
+
"bom-ref": "pkg:npm/vue-eslint-parser@10.4.1",
|
|
82
82
|
"scope": "required",
|
|
83
83
|
"licenses": [
|
|
84
84
|
{
|
|
85
85
|
"expression": "MIT"
|
|
86
86
|
}
|
|
87
87
|
],
|
|
88
|
-
"purl": "pkg:npm/vue-eslint-parser@10.4.
|
|
88
|
+
"purl": "pkg:npm/vue-eslint-parser@10.4.1"
|
|
89
89
|
}
|
|
90
90
|
],
|
|
91
91
|
"dependencies": [
|
|
92
92
|
{
|
|
93
|
-
"ref": "pkg:npm/@enormora/eslint-config-typescript@0.0.
|
|
93
|
+
"ref": "pkg:npm/@enormora/eslint-config-typescript@0.0.41"
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
|
-
"ref": "pkg:npm/@enormora/eslint-config-vue-ts@0.0.
|
|
96
|
+
"ref": "pkg:npm/@enormora/eslint-config-vue-ts@0.0.25",
|
|
97
97
|
"dependsOn": [
|
|
98
|
-
"pkg:npm/@enormora/eslint-config-typescript@0.0.
|
|
99
|
-
"pkg:npm/@typescript-eslint/parser@8.
|
|
100
|
-
"pkg:npm/eslint-plugin-vue@10.9.
|
|
98
|
+
"pkg:npm/@enormora/eslint-config-typescript@0.0.41",
|
|
99
|
+
"pkg:npm/@typescript-eslint/parser@8.60.1",
|
|
100
|
+
"pkg:npm/eslint-plugin-vue@10.9.2",
|
|
101
101
|
"pkg:npm/globals@17.6.0",
|
|
102
|
-
"pkg:npm/vue-eslint-parser@10.4.
|
|
102
|
+
"pkg:npm/vue-eslint-parser@10.4.1"
|
|
103
103
|
]
|
|
104
104
|
},
|
|
105
105
|
{
|
|
106
|
-
"ref": "pkg:npm/@typescript-eslint/parser@8.
|
|
106
|
+
"ref": "pkg:npm/@typescript-eslint/parser@8.60.1"
|
|
107
107
|
},
|
|
108
108
|
{
|
|
109
|
-
"ref": "pkg:npm/eslint-plugin-vue@10.9.
|
|
109
|
+
"ref": "pkg:npm/eslint-plugin-vue@10.9.2"
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
"ref": "pkg:npm/globals@17.6.0"
|
|
113
113
|
},
|
|
114
114
|
{
|
|
115
|
-
"ref": "pkg:npm/vue-eslint-parser@10.4.
|
|
115
|
+
"ref": "pkg:npm/vue-eslint-parser@10.4.1"
|
|
116
116
|
}
|
|
117
117
|
]
|
|
118
118
|
}
|