@lvce-editor/eslint-config 12.4.0 → 13.1.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 +6 -0
  3. package/package.json +10 -9
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',
@@ -416,6 +419,7 @@ const defaultConfig = tseslint.config(
416
419
  'unicorn/prefer-event-target': 'off',
417
420
  'unicorn/no-null': 'off',
418
421
  'unicorn/prevent-abbreviations': 'off',
422
+ 'unicorn/name-replacements': 'off',
419
423
  'unicorn/import-style': 'off',
420
424
  'unicorn/no-useless-undefined': 'off',
421
425
  'unicorn/no-computed-property-existence-check': 'off',
@@ -518,6 +522,8 @@ export const recommendedNvmrc = [...nvmrcPlugin.default]
518
522
 
519
523
  export const recommendedRegex = [...regexPlugin.default]
520
524
 
525
+ export const recommendedVirtualDom = [...virtualDomPlugin.default]
526
+
521
527
  export const recommendedE2e = [...e2ePlugin.default]
522
528
 
523
529
  export const recommendedRpc = [...rpcPlugin.default]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/eslint-config",
3
- "version": "12.4.0",
3
+ "version": "13.1.0",
4
4
  "main": "index.js",
5
5
  "type": "module",
6
6
  "types": "index.d.ts",
@@ -29,16 +29,17 @@
29
29
  "eslint-plugin-n": "18.1.0",
30
30
  "eslint-plugin-package-json": "1.4.0",
31
31
  "eslint-plugin-perfectionist": "5.9.1",
32
- "eslint-plugin-sonarjs": "4.0.3",
33
- "eslint-plugin-unicorn": "67.0.0",
32
+ "eslint-plugin-sonarjs": "4.1.0",
33
+ "eslint-plugin-unicorn": "68.0.0",
34
34
  "eslint-plugin-yml": "3.4.0",
35
35
  "typescript-eslint": "8.61.1",
36
- "@lvce-editor/eslint-plugin-tsconfig": "12.4.0",
37
- "@lvce-editor/eslint-plugin-github-actions": "12.4.0",
38
- "@lvce-editor/eslint-plugin-nvmrc": "12.4.0",
39
- "@lvce-editor/eslint-plugin-regex": "12.4.0",
40
- "@lvce-editor/eslint-plugin-e2e": "12.4.0",
41
- "@lvce-editor/eslint-plugin-rpc": "12.4.0"
36
+ "@lvce-editor/eslint-plugin-tsconfig": "13.1.0",
37
+ "@lvce-editor/eslint-plugin-github-actions": "13.1.0",
38
+ "@lvce-editor/eslint-plugin-nvmrc": "13.1.0",
39
+ "@lvce-editor/eslint-plugin-regex": "13.1.0",
40
+ "@lvce-editor/eslint-plugin-virtual-dom": "13.1.0",
41
+ "@lvce-editor/eslint-plugin-e2e": "13.1.0",
42
+ "@lvce-editor/eslint-plugin-rpc": "13.1.0"
42
43
  },
43
44
  "peerDependencies": {
44
45
  "eslint": "^10"