@lvce-editor/eslint-config 13.7.0 → 14.0.1
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/index.d.ts +2 -0
- package/index.js +5 -0
- package/package.json +9 -8
package/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ declare const recommendedNvmrc: readonly any[]
|
|
|
6
6
|
declare const recommendedRegex: readonly any[]
|
|
7
7
|
declare const recommendedVirtualDom: readonly any[]
|
|
8
8
|
declare const recommendedE2e: readonly any[]
|
|
9
|
+
declare const recommendedDevcontainer: readonly any[]
|
|
9
10
|
declare const recommendedRpc: readonly any[]
|
|
10
11
|
|
|
11
12
|
export { recommendedNode }
|
|
@@ -15,6 +16,7 @@ export { recommendedNvmrc }
|
|
|
15
16
|
export { recommendedRegex }
|
|
16
17
|
export { recommendedVirtualDom }
|
|
17
18
|
export { recommendedE2e }
|
|
19
|
+
export { recommendedDevcontainer }
|
|
18
20
|
export { recommendedRpc }
|
|
19
21
|
|
|
20
22
|
export default config
|
package/index.js
CHANGED
|
@@ -23,6 +23,8 @@ import * as virtualDomPlugin from '@lvce-editor/eslint-plugin-virtual-dom'
|
|
|
23
23
|
|
|
24
24
|
import * as e2ePlugin from '@lvce-editor/eslint-plugin-e2e'
|
|
25
25
|
|
|
26
|
+
import * as devcontainerPlugin from '@lvce-editor/eslint-plugin-devcontainer'
|
|
27
|
+
|
|
26
28
|
import * as rpcPlugin from '@lvce-editor/eslint-plugin-rpc'
|
|
27
29
|
|
|
28
30
|
const root = process.cwd()
|
|
@@ -495,6 +497,7 @@ const defaultConfig = tseslint.config(
|
|
|
495
497
|
},
|
|
496
498
|
},
|
|
497
499
|
...e2ePlugin.default,
|
|
500
|
+
...devcontainerPlugin.default,
|
|
498
501
|
...rpcPlugin.default,
|
|
499
502
|
)
|
|
500
503
|
|
|
@@ -527,6 +530,8 @@ export const recommendedVirtualDom = [...virtualDomPlugin.default]
|
|
|
527
530
|
|
|
528
531
|
export const recommendedE2e = [...e2ePlugin.default]
|
|
529
532
|
|
|
533
|
+
export const recommendedDevcontainer = [...devcontainerPlugin.default]
|
|
534
|
+
|
|
530
535
|
export const recommendedRpc = [...rpcPlugin.default]
|
|
531
536
|
|
|
532
537
|
export default defaultConfig
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -33,13 +33,14 @@
|
|
|
33
33
|
"eslint-plugin-unicorn": "69.0.0",
|
|
34
34
|
"eslint-plugin-yml": "3.5.0",
|
|
35
35
|
"typescript-eslint": "8.62.0",
|
|
36
|
-
"@lvce-editor/eslint-plugin-tsconfig": "
|
|
37
|
-
"@lvce-editor/eslint-plugin-github-actions": "
|
|
38
|
-
"@lvce-editor/eslint-plugin-nvmrc": "
|
|
39
|
-
"@lvce-editor/eslint-plugin-regex": "
|
|
40
|
-
"@lvce-editor/eslint-plugin-virtual-dom": "
|
|
41
|
-
"@lvce-editor/eslint-plugin-e2e": "
|
|
42
|
-
"@lvce-editor/eslint-plugin-
|
|
36
|
+
"@lvce-editor/eslint-plugin-tsconfig": "14.0.1",
|
|
37
|
+
"@lvce-editor/eslint-plugin-github-actions": "14.0.1",
|
|
38
|
+
"@lvce-editor/eslint-plugin-nvmrc": "14.0.1",
|
|
39
|
+
"@lvce-editor/eslint-plugin-regex": "14.0.1",
|
|
40
|
+
"@lvce-editor/eslint-plugin-virtual-dom": "14.0.1",
|
|
41
|
+
"@lvce-editor/eslint-plugin-e2e": "14.0.1",
|
|
42
|
+
"@lvce-editor/eslint-plugin-devcontainer": "14.0.1",
|
|
43
|
+
"@lvce-editor/eslint-plugin-rpc": "14.0.1"
|
|
43
44
|
},
|
|
44
45
|
"peerDependencies": {
|
|
45
46
|
"eslint": "^10"
|