@lvce-editor/eslint-config 13.6.0 → 14.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.
Files changed (3) hide show
  1. package/index.d.ts +2 -0
  2. package/index.js +5 -0
  3. package/package.json +11 -10
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": "13.6.0",
3
+ "version": "14.0.0",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "types": "index.d.ts",
@@ -25,21 +25,22 @@
25
25
  "@eslint/js": "10.0.1",
26
26
  "@eslint/json": "2.0.0",
27
27
  "@eslint/markdown": "8.0.2",
28
- "eslint-plugin-jest": "29.15.2",
29
- "eslint-plugin-n": "18.1.0",
28
+ "eslint-plugin-jest": "29.15.3",
29
+ "eslint-plugin-n": "18.2.1",
30
30
  "eslint-plugin-package-json": "1.5.0",
31
31
  "eslint-plugin-perfectionist": "5.9.1",
32
32
  "eslint-plugin-sonarjs": "4.1.0",
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": "13.6.0",
37
- "@lvce-editor/eslint-plugin-github-actions": "13.6.0",
38
- "@lvce-editor/eslint-plugin-nvmrc": "13.6.0",
39
- "@lvce-editor/eslint-plugin-regex": "13.6.0",
40
- "@lvce-editor/eslint-plugin-virtual-dom": "13.6.0",
41
- "@lvce-editor/eslint-plugin-e2e": "13.6.0",
42
- "@lvce-editor/eslint-plugin-rpc": "13.6.0"
36
+ "@lvce-editor/eslint-plugin-tsconfig": "14.0.0",
37
+ "@lvce-editor/eslint-plugin-github-actions": "14.0.0",
38
+ "@lvce-editor/eslint-plugin-nvmrc": "14.0.0",
39
+ "@lvce-editor/eslint-plugin-regex": "14.0.0",
40
+ "@lvce-editor/eslint-plugin-virtual-dom": "14.0.0",
41
+ "@lvce-editor/eslint-plugin-e2e": "14.0.0",
42
+ "@lvce-editor/eslint-plugin-devcontainer": "14.0.0",
43
+ "@lvce-editor/eslint-plugin-rpc": "14.0.0"
43
44
  },
44
45
  "peerDependencies": {
45
46
  "eslint": "^10"