@lvce-editor/eslint-config 10.6.0 → 11.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 +7 -0
- package/package.json +7 -6
package/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ declare const config: readonly any[] & {}
|
|
|
2
2
|
declare const recommendedNode: readonly any[] & {}
|
|
3
3
|
declare const recommendedTsconfig: readonly any[] & {}
|
|
4
4
|
declare const recommendedActions: readonly any[] & {}
|
|
5
|
+
declare const recommendedNvmrc: readonly any[] & {}
|
|
5
6
|
declare const recommendedRegex: readonly any[] & {}
|
|
6
7
|
declare const recommendedE2e: readonly any[] & {}
|
|
7
8
|
declare const recommendedRpc: readonly any[] & {}
|
|
@@ -9,6 +10,7 @@ declare const recommendedRpc: readonly any[] & {}
|
|
|
9
10
|
export { recommendedNode }
|
|
10
11
|
export { recommendedTsconfig }
|
|
11
12
|
export { recommendedActions }
|
|
13
|
+
export { recommendedNvmrc }
|
|
12
14
|
export { recommendedRegex }
|
|
13
15
|
export { recommendedE2e }
|
|
14
16
|
export { recommendedRpc }
|
package/index.js
CHANGED
|
@@ -15,6 +15,8 @@ import * as tsconfigPlugin from '@lvce-editor/eslint-plugin-tsconfig'
|
|
|
15
15
|
|
|
16
16
|
import * as actionsPlugin from '@lvce-editor/eslint-plugin-github-actions'
|
|
17
17
|
|
|
18
|
+
import * as nvmrcPlugin from '@lvce-editor/eslint-plugin-nvmrc'
|
|
19
|
+
|
|
18
20
|
import * as regexPlugin from '@lvce-editor/eslint-plugin-regex'
|
|
19
21
|
|
|
20
22
|
import * as e2ePlugin from '@lvce-editor/eslint-plugin-e2e'
|
|
@@ -113,6 +115,7 @@ const defaultConfig = tseslint.config(
|
|
|
113
115
|
'mycopy',
|
|
114
116
|
'myproject',
|
|
115
117
|
'navigations',
|
|
118
|
+
'worktree',
|
|
116
119
|
'newfolder',
|
|
117
120
|
'newshared',
|
|
118
121
|
'Niño',
|
|
@@ -174,6 +177,8 @@ const defaultConfig = tseslint.config(
|
|
|
174
177
|
'Credentialless',
|
|
175
178
|
'Resizers',
|
|
176
179
|
'viewmodel',
|
|
180
|
+
'stash',
|
|
181
|
+
'unstash',
|
|
177
182
|
'Viewletkey',
|
|
178
183
|
'Visiblelines',
|
|
179
184
|
'Whenexpression',
|
|
@@ -486,6 +491,8 @@ export const recommendedTsconfig = [...tsconfigPlugin.default]
|
|
|
486
491
|
|
|
487
492
|
export const recommendedActions = [...actionsPlugin.default]
|
|
488
493
|
|
|
494
|
+
export const recommendedNvmrc = [...nvmrcPlugin.default]
|
|
495
|
+
|
|
489
496
|
export const recommendedRegex = [...regexPlugin.default]
|
|
490
497
|
|
|
491
498
|
export const recommendedE2e = [...e2ePlugin.default]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "11.0.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -33,11 +33,12 @@
|
|
|
33
33
|
"eslint-plugin-unicorn": "64.0.0",
|
|
34
34
|
"eslint-plugin-yml": "3.3.2",
|
|
35
35
|
"typescript-eslint": "8.60.0",
|
|
36
|
-
"@lvce-editor/eslint-plugin-tsconfig": "
|
|
37
|
-
"@lvce-editor/eslint-plugin-github-actions": "
|
|
38
|
-
"@lvce-editor/eslint-plugin-
|
|
39
|
-
"@lvce-editor/eslint-plugin-
|
|
40
|
-
"@lvce-editor/eslint-plugin-
|
|
36
|
+
"@lvce-editor/eslint-plugin-tsconfig": "11.0.0",
|
|
37
|
+
"@lvce-editor/eslint-plugin-github-actions": "11.0.0",
|
|
38
|
+
"@lvce-editor/eslint-plugin-nvmrc": "11.0.0",
|
|
39
|
+
"@lvce-editor/eslint-plugin-regex": "11.0.0",
|
|
40
|
+
"@lvce-editor/eslint-plugin-e2e": "11.0.0",
|
|
41
|
+
"@lvce-editor/eslint-plugin-rpc": "11.0.0"
|
|
41
42
|
},
|
|
42
43
|
"peerDependencies": {
|
|
43
44
|
"eslint": "^10"
|