@lvce-editor/eslint-config 12.4.0 → 13.0.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/index.d.ts +2 -0
- package/index.js +5 -0
- package/package.json +8 -7
package/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ declare const recommendedTsconfig: readonly any[]
|
|
|
4
4
|
declare const recommendedActions: readonly any[]
|
|
5
5
|
declare const recommendedNvmrc: readonly any[]
|
|
6
6
|
declare const recommendedRegex: readonly any[]
|
|
7
|
+
declare const recommendedVirtualDom: readonly any[]
|
|
7
8
|
declare const recommendedE2e: readonly any[]
|
|
8
9
|
declare const recommendedRpc: readonly any[]
|
|
9
10
|
|
|
@@ -12,6 +13,7 @@ export { recommendedTsconfig }
|
|
|
12
13
|
export { recommendedActions }
|
|
13
14
|
export { recommendedNvmrc }
|
|
14
15
|
export { recommendedRegex }
|
|
16
|
+
export { recommendedVirtualDom }
|
|
15
17
|
export { recommendedE2e }
|
|
16
18
|
export { recommendedRpc }
|
|
17
19
|
|
package/index.js
CHANGED
|
@@ -19,6 +19,8 @@ import * as nvmrcPlugin from '@lvce-editor/eslint-plugin-nvmrc'
|
|
|
19
19
|
|
|
20
20
|
import * as regexPlugin from '@lvce-editor/eslint-plugin-regex'
|
|
21
21
|
|
|
22
|
+
import * as virtualDomPlugin from '@lvce-editor/eslint-plugin-virtual-dom'
|
|
23
|
+
|
|
22
24
|
import * as e2ePlugin from '@lvce-editor/eslint-plugin-e2e'
|
|
23
25
|
|
|
24
26
|
import * as rpcPlugin from '@lvce-editor/eslint-plugin-rpc'
|
|
@@ -48,6 +50,7 @@ const defaultConfig = tseslint.config(
|
|
|
48
50
|
'testdir',
|
|
49
51
|
'iselectron',
|
|
50
52
|
'quickpick',
|
|
53
|
+
'quasis',
|
|
51
54
|
'Backquote',
|
|
52
55
|
'checkmark',
|
|
53
56
|
'openrouter',
|
|
@@ -518,6 +521,8 @@ export const recommendedNvmrc = [...nvmrcPlugin.default]
|
|
|
518
521
|
|
|
519
522
|
export const recommendedRegex = [...regexPlugin.default]
|
|
520
523
|
|
|
524
|
+
export const recommendedVirtualDom = [...virtualDomPlugin.default]
|
|
525
|
+
|
|
521
526
|
export const recommendedE2e = [...e2ePlugin.default]
|
|
522
527
|
|
|
523
528
|
export const recommendedRpc = [...rpcPlugin.default]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -33,12 +33,13 @@
|
|
|
33
33
|
"eslint-plugin-unicorn": "67.0.0",
|
|
34
34
|
"eslint-plugin-yml": "3.4.0",
|
|
35
35
|
"typescript-eslint": "8.61.1",
|
|
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-
|
|
41
|
-
"@lvce-editor/eslint-plugin-
|
|
36
|
+
"@lvce-editor/eslint-plugin-tsconfig": "13.0.0",
|
|
37
|
+
"@lvce-editor/eslint-plugin-github-actions": "13.0.0",
|
|
38
|
+
"@lvce-editor/eslint-plugin-nvmrc": "13.0.0",
|
|
39
|
+
"@lvce-editor/eslint-plugin-regex": "13.0.0",
|
|
40
|
+
"@lvce-editor/eslint-plugin-virtual-dom": "13.0.0",
|
|
41
|
+
"@lvce-editor/eslint-plugin-e2e": "13.0.0",
|
|
42
|
+
"@lvce-editor/eslint-plugin-rpc": "13.0.0"
|
|
42
43
|
},
|
|
43
44
|
"peerDependencies": {
|
|
44
45
|
"eslint": "^10"
|