@vinicunca/eslint-config 3.26.0 → 3.27.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 (2) hide show
  1. package/dist/index.d.ts +102 -6
  2. package/package.json +13 -13
package/dist/index.d.ts CHANGED
@@ -777,6 +777,11 @@ interface RuleOptions {
777
777
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/empty-tags.md#repos-sticky-header
778
778
  */
779
779
  'jsdoc/empty-tags'?: Linter.RuleEntry<JsdocEmptyTags>;
780
+ /**
781
+ * Reports use of JSDoc tags in non-tag positions (in the default "typescript" mode).
782
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/escape-inline-tags.md#repos-sticky-header
783
+ */
784
+ 'jsdoc/escape-inline-tags'?: Linter.RuleEntry<JsdocEscapeInlineTags>;
780
785
  /**
781
786
  * Prohibits use of `@implements` on non-constructor functions (to enforce the tag only being used on classes/constructors).
782
787
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/implements-on-classes.md#repos-sticky-header
@@ -857,6 +862,11 @@ interface RuleOptions {
857
862
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/no-undefined-types.md#repos-sticky-header
858
863
  */
859
864
  'jsdoc/no-undefined-types'?: Linter.RuleEntry<JsdocNoUndefinedTypes>;
865
+ /**
866
+ * Prefer `@import` tags to inline `import()` statements.
867
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/prefer-import-tag.md#repos-sticky-header
868
+ */
869
+ 'jsdoc/prefer-import-tag'?: Linter.RuleEntry<JsdocPreferImportTag>;
860
870
  /**
861
871
  * Reports use of `any` or `*` type
862
872
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/reject-any-type.md#repos-sticky-header
@@ -972,11 +982,21 @@ interface RuleOptions {
972
982
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-returns-type.md#repos-sticky-header
973
983
  */
974
984
  'jsdoc/require-returns-type'?: Linter.RuleEntry<JsdocRequireReturnsType>;
985
+ /**
986
+ * Requires tags be present, optionally for specific contexts
987
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-tags.md#repos-sticky-header
988
+ */
989
+ 'jsdoc/require-tags'?: Linter.RuleEntry<JsdocRequireTags>;
975
990
  /**
976
991
  * Requires `@template` tags be present when type parameters are used.
977
992
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template.md#repos-sticky-header
978
993
  */
979
994
  'jsdoc/require-template'?: Linter.RuleEntry<JsdocRequireTemplate>;
995
+ /**
996
+ * Requires a description for `@template` tags
997
+ * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-template-description.md#repos-sticky-header
998
+ */
999
+ 'jsdoc/require-template-description'?: Linter.RuleEntry<[]>;
980
1000
  /**
981
1001
  * Requires that throw statements are documented with `@throws` tags.
982
1002
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/require-throws.md#repos-sticky-header
@@ -1018,7 +1038,7 @@ interface RuleOptions {
1018
1038
  */
1019
1039
  'jsdoc/sort-tags'?: Linter.RuleEntry<JsdocSortTags>;
1020
1040
  /**
1021
- * Enforces lines (or no lines) between tags.
1041
+ * Enforces lines (or no lines) before, after, or between tags.
1022
1042
  * @see https://github.com/gajus/eslint-plugin-jsdoc/blob/main/docs/rules/tag-lines.md#repos-sticky-header
1023
1043
  */
1024
1044
  'jsdoc/tag-lines'?: Linter.RuleEntry<JsdocTagLines>;
@@ -1369,7 +1389,7 @@ interface RuleOptions {
1369
1389
  * Disallow missing label references
1370
1390
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-label-refs.md
1371
1391
  */
1372
- 'markdown/no-missing-label-refs'?: Linter.RuleEntry<[]>;
1392
+ 'markdown/no-missing-label-refs'?: Linter.RuleEntry<MarkdownNoMissingLabelRefs>;
1373
1393
  /**
1374
1394
  * Disallow link fragments that do not reference valid headings
1375
1395
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-missing-link-fragments.md
@@ -1380,6 +1400,11 @@ interface RuleOptions {
1380
1400
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-multiple-h1.md
1381
1401
  */
1382
1402
  'markdown/no-multiple-h1'?: Linter.RuleEntry<MarkdownNoMultipleH1>;
1403
+ /**
1404
+ * Disallow URLs that match defined reference identifiers
1405
+ * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reference-like-urls.md
1406
+ */
1407
+ 'markdown/no-reference-like-urls'?: Linter.RuleEntry<[]>;
1383
1408
  /**
1384
1409
  * Disallow reversed link and image syntax
1385
1410
  * @see https://github.com/eslint/markdown/blob/main/docs/rules/no-reversed-media-syntax.md
@@ -6310,6 +6335,11 @@ interface RuleOptions {
6310
6335
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/padding-around-test-blocks.md
6311
6336
  */
6312
6337
  'test/padding-around-test-blocks'?: Linter.RuleEntry<[]>;
6338
+ /**
6339
+ * Prefer `toHaveBeenCalledExactlyOnceWith` over `toHaveBeenCalledOnce` and `toHaveBeenCalledWith`
6340
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-called-exactly-once-with.md
6341
+ */
6342
+ 'test/prefer-called-exactly-once-with'?: Linter.RuleEntry<[]>;
6313
6343
  /**
6314
6344
  * enforce using `toBeCalledOnce()` or `toHaveBeenCalledOnce()`
6315
6345
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-called-once.md
@@ -6370,6 +6400,11 @@ interface RuleOptions {
6370
6400
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-hooks-on-top.md
6371
6401
  */
6372
6402
  'test/prefer-hooks-on-top'?: Linter.RuleEntry<[]>;
6403
+ /**
6404
+ * prefer dynamic import in mock
6405
+ * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-import-in-mock.md
6406
+ */
6407
+ 'test/prefer-import-in-mock'?: Linter.RuleEntry<[]>;
6373
6408
  /**
6374
6409
  * enforce importing Vitest globals
6375
6410
  * @see https://github.com/vitest-dev/eslint-plugin-vitest/blob/main/docs/rules/prefer-importing-vitest-globals.md
@@ -7028,7 +7063,7 @@ interface RuleOptions {
7028
7063
  * Disallow member access on a value with type `any`
7029
7064
  * @see https://typescript-eslint.io/rules/no-unsafe-member-access
7030
7065
  */
7031
- 'ts/no-unsafe-member-access'?: Linter.RuleEntry<[]>;
7066
+ 'ts/no-unsafe-member-access'?: Linter.RuleEntry<TsNoUnsafeMemberAccess>;
7032
7067
  /**
7033
7068
  * Disallow returning a value with type `any` from a function
7034
7069
  * @see https://typescript-eslint.io/rules/no-unsafe-return
@@ -8320,7 +8355,7 @@ interface RuleOptions {
8320
8355
  * disallow asynchronous actions in computed properties
8321
8356
  * @see https://eslint.vuejs.org/rules/no-async-in-computed-properties.html
8322
8357
  */
8323
- 'vue/no-async-in-computed-properties'?: Linter.RuleEntry<[]>;
8358
+ 'vue/no-async-in-computed-properties'?: Linter.RuleEntry<VueNoAsyncInComputedProperties>;
8324
8359
  /**
8325
8360
  * disallow the use of bare strings in `<template>`
8326
8361
  * @see https://eslint.vuejs.org/rules/no-bare-strings-in-template.html
@@ -8821,7 +8856,7 @@ interface RuleOptions {
8821
8856
  * disallow use of v-html to prevent XSS attack
8822
8857
  * @see https://eslint.vuejs.org/rules/no-v-html.html
8823
8858
  */
8824
- 'vue/no-v-html'?: Linter.RuleEntry<[]>;
8859
+ 'vue/no-v-html'?: Linter.RuleEntry<VueNoVHtml>;
8825
8860
  /**
8826
8861
  * disallow adding an argument to `v-model` used in custom component
8827
8862
  * @see https://eslint.vuejs.org/rules/no-v-model-argument.html
@@ -9429,7 +9464,6 @@ interface RuleOptions {
9429
9464
  */
9430
9465
  'yoda'?: Linter.RuleEntry<Yoda>;
9431
9466
  }
9432
-
9433
9467
  /* ======= Declarations ======= */
9434
9468
  // ----- accessor-pairs -----
9435
9469
  type AccessorPairs = [] | [{
@@ -9869,6 +9903,7 @@ type JsdocCheckPropertyNames = [] | [{
9869
9903
  type JsdocCheckTagNames = [] | [{
9870
9904
  definedTags?: string[];
9871
9905
  enableFixer?: boolean;
9906
+ inlineTags?: string[];
9872
9907
  jsxTags?: boolean;
9873
9908
  typed?: boolean;
9874
9909
  }];
@@ -9911,6 +9946,12 @@ type JsdocConvertToJsdocComments = [] | [{
9911
9946
  type JsdocEmptyTags = [] | [{
9912
9947
  tags?: string[];
9913
9948
  }];
9949
+ // ----- jsdoc/escape-inline-tags -----
9950
+ type JsdocEscapeInlineTags = [] | [{
9951
+ allowedInlineTags?: string[];
9952
+ enableFixer?: boolean;
9953
+ fixType?: ("backticks" | "backslash");
9954
+ }];
9914
9955
  // ----- jsdoc/implements-on-classes -----
9915
9956
  type JsdocImplementsOnClasses = [] | [{
9916
9957
  contexts?: (string | {
@@ -10027,10 +10068,17 @@ type JsdocNoTypes = [] | [{
10027
10068
  }];
10028
10069
  // ----- jsdoc/no-undefined-types -----
10029
10070
  type JsdocNoUndefinedTypes = [] | [{
10071
+ checkUsedTypedefs?: boolean;
10030
10072
  definedTypes?: string[];
10031
10073
  disableReporting?: boolean;
10032
10074
  markVariablesAsUsed?: boolean;
10033
10075
  }];
10076
+ // ----- jsdoc/prefer-import-tag -----
10077
+ type JsdocPreferImportTag = [] | [{
10078
+ enableFixer?: boolean;
10079
+ exemptTypedefs?: boolean;
10080
+ outputType?: ("named-import" | "namespaced-import");
10081
+ }];
10034
10082
  // ----- jsdoc/require-asterisk-prefix -----
10035
10083
  type JsdocRequireAsteriskPrefix = [] | [("always" | "never" | "any")] | [("always" | "never" | "any"), {
10036
10084
  tags?: {
@@ -10190,6 +10238,7 @@ type JsdocRequireReturns = [] | [{
10190
10238
  type JsdocRequireReturnsCheck = [] | [{
10191
10239
  exemptAsync?: boolean;
10192
10240
  exemptGenerators?: boolean;
10241
+ noNativeTypes?: boolean;
10193
10242
  reportMissingReturnForUndefinedTypes?: boolean;
10194
10243
  }];
10195
10244
  // ----- jsdoc/require-returns-description -----
@@ -10206,6 +10255,14 @@ type JsdocRequireReturnsType = [] | [{
10206
10255
  context?: string;
10207
10256
  })[];
10208
10257
  }];
10258
+ // ----- jsdoc/require-tags -----
10259
+ type JsdocRequireTags = [] | [{
10260
+ tags?: (string | {
10261
+ context?: string;
10262
+ tag?: string;
10263
+ [k: string]: unknown | undefined;
10264
+ })[];
10265
+ }];
10209
10266
  // ----- jsdoc/require-template -----
10210
10267
  type JsdocRequireTemplate = [] | [{
10211
10268
  exemptedBy?: string[];
@@ -10256,6 +10313,7 @@ type JsdocTagLines = [] | [("always" | "any" | "never")] | [("always" | "any" |
10256
10313
  applyToEndTag?: boolean;
10257
10314
  count?: number;
10258
10315
  endLines?: (number | null);
10316
+ maxBlockLines?: (number | null);
10259
10317
  startLines?: (number | null);
10260
10318
  tags?: {
10261
10319
  [k: string]: {
@@ -10272,13 +10330,29 @@ type JsdocTextEscaping = [] | [{
10272
10330
  // ----- jsdoc/type-formatting -----
10273
10331
  type JsdocTypeFormatting = [] | [{
10274
10332
  arrayBrackets?: ("angle" | "square");
10333
+ arrowFunctionPostReturnMarkerSpacing?: string;
10334
+ arrowFunctionPreReturnMarkerSpacing?: string;
10275
10335
  enableFixer?: boolean;
10336
+ functionOrClassParameterSpacing?: string;
10337
+ functionOrClassPostGenericSpacing?: string;
10338
+ functionOrClassPostReturnMarkerSpacing?: string;
10339
+ functionOrClassPreReturnMarkerSpacing?: string;
10340
+ functionOrClassTypeParameterSpacing?: string;
10341
+ genericAndTupleElementSpacing?: string;
10276
10342
  genericDot?: boolean;
10343
+ keyValuePostColonSpacing?: string;
10344
+ keyValuePostKeySpacing?: string;
10345
+ keyValuePostOptionalSpacing?: string;
10346
+ keyValuePostVariadicSpacing?: string;
10347
+ methodQuotes?: ("double" | "single");
10277
10348
  objectFieldIndent?: string;
10278
10349
  objectFieldQuote?: ("double" | "single" | null);
10279
10350
  objectFieldSeparator?: ("comma" | "comma-and-linebreak" | "linebreak" | "semicolon" | "semicolon-and-linebreak");
10280
10351
  objectFieldSeparatorOptionalLinebreak?: boolean;
10281
10352
  objectFieldSeparatorTrailingPunctuation?: boolean;
10353
+ parameterDefaultValueSpacing?: string;
10354
+ postMethodNameSpacing?: string;
10355
+ postNewSpacing?: string;
10282
10356
  separatorForSingleObjectField?: boolean;
10283
10357
  stringQuotes?: ("double" | "single");
10284
10358
  typeBracketSpacing?: string;
@@ -10972,6 +11046,10 @@ type MarkdownNoHtml = [] | [{
10972
11046
  type MarkdownNoMissingAtxHeadingSpace = [] | [{
10973
11047
  checkClosedHeadings?: boolean;
10974
11048
  }];
11049
+ // ----- markdown/no-missing-label-refs -----
11050
+ type MarkdownNoMissingLabelRefs = [] | [{
11051
+ allowLabels?: string[];
11052
+ }];
10975
11053
  // ----- markdown/no-missing-link-fragments -----
10976
11054
  type MarkdownNoMissingLinkFragments = [] | [{
10977
11055
  ignoreCase?: boolean;
@@ -11356,12 +11434,14 @@ type NoRestrictedImports = ((string | {
11356
11434
  message?: string;
11357
11435
  importNames?: string[];
11358
11436
  allowImportNames?: string[];
11437
+ allowTypeImports?: boolean;
11359
11438
  })[] | [] | [{
11360
11439
  paths?: (string | {
11361
11440
  name: string;
11362
11441
  message?: string;
11363
11442
  importNames?: string[];
11364
11443
  allowImportNames?: string[];
11444
+ allowTypeImports?: boolean;
11365
11445
  })[];
11366
11446
  patterns?: (string[] | ({
11367
11447
  [k: string]: unknown | undefined;
@@ -16378,6 +16458,10 @@ type TsNoUnnecessaryTypeAssertion = [] | [{
16378
16458
  checkLiteralConstAssertions?: boolean;
16379
16459
  typesToIgnore?: string[];
16380
16460
  }];
16461
+ // ----- ts/no-unsafe-member-access -----
16462
+ type TsNoUnsafeMemberAccess = [] | [{
16463
+ allowOptionalChaining?: boolean;
16464
+ }];
16381
16465
  // ----- ts/no-unused-expressions -----
16382
16466
  type TsNoUnusedExpressions = [] | [{
16383
16467
  allowShortCircuit?: boolean;
@@ -16395,6 +16479,7 @@ type TsNoUnusedVars = [] | [(("all" | "local") | {
16395
16479
  destructuredArrayIgnorePattern?: string;
16396
16480
  ignoreClassWithStaticInitBlock?: boolean;
16397
16481
  ignoreRestSiblings?: boolean;
16482
+ ignoreUsingDeclarations?: boolean;
16398
16483
  reportUsedIgnorePattern?: boolean;
16399
16484
  vars?: ("all" | "local");
16400
16485
  varsIgnorePattern?: string;
@@ -16864,6 +16949,7 @@ type UnusedImportsNoUnusedImports = [] | [(("all" | "local") | {
16864
16949
  destructuredArrayIgnorePattern?: string;
16865
16950
  ignoreClassWithStaticInitBlock?: boolean;
16866
16951
  ignoreRestSiblings?: boolean;
16952
+ ignoreUsingDeclarations?: boolean;
16867
16953
  reportUsedIgnorePattern?: boolean;
16868
16954
  vars?: ("all" | "local");
16869
16955
  varsIgnorePattern?: string;
@@ -16877,6 +16963,7 @@ type UnusedImportsNoUnusedVars = [] | [(("all" | "local") | {
16877
16963
  destructuredArrayIgnorePattern?: string;
16878
16964
  ignoreClassWithStaticInitBlock?: boolean;
16879
16965
  ignoreRestSiblings?: boolean;
16966
+ ignoreUsingDeclarations?: boolean;
16880
16967
  reportUsedIgnorePattern?: boolean;
16881
16968
  vars?: ("all" | "local");
16882
16969
  varsIgnorePattern?: string;
@@ -16928,6 +17015,7 @@ type VueAttributeHyphenation = [] | [("always" | "never")] | [("always" | "never
16928
17015
  type VueAttributesOrder = [] | [{
16929
17016
  order?: (("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT") | ("DEFINITION" | "LIST_RENDERING" | "CONDITIONALS" | "RENDER_MODIFIERS" | "GLOBAL" | "UNIQUE" | "SLOT" | "TWO_WAY_BINDING" | "OTHER_DIRECTIVES" | "OTHER_ATTR" | "ATTR_STATIC" | "ATTR_DYNAMIC" | "ATTR_SHORTHAND_BOOL" | "EVENTS" | "CONTENT")[])[];
16930
17017
  alphabetical?: boolean;
17018
+ sortLineLength?: boolean;
16931
17019
  }];
16932
17020
  // ----- vue/block-lang -----
16933
17021
  type VueBlockLang = [] | [{
@@ -17574,6 +17662,10 @@ type VueNewLineBetweenMultiLineProperty = [] | [{
17574
17662
  }];
17575
17663
  // ----- vue/next-tick-style -----
17576
17664
  type VueNextTickStyle = [] | [("promise" | "callback")];
17665
+ // ----- vue/no-async-in-computed-properties -----
17666
+ type VueNoAsyncInComputedProperties = [] | [{
17667
+ ignoredObjectNames?: string[];
17668
+ }];
17577
17669
  // ----- vue/no-bare-strings-in-template -----
17578
17670
  type VueNoBareStringsInTemplate = [] | [{
17579
17671
  allowlist?: string[];
@@ -17858,6 +17950,10 @@ type VueNoUselessVBind = [] | [{
17858
17950
  ignoreIncludesComment?: boolean;
17859
17951
  ignoreStringEscape?: boolean;
17860
17952
  }];
17953
+ // ----- vue/no-v-html -----
17954
+ type VueNoVHtml = [] | [{
17955
+ ignorePattern?: string;
17956
+ }];
17861
17957
  // ----- vue/no-v-text-v-html-on-component -----
17862
17958
  type VueNoVTextVHtmlOnComponent = [] | [{
17863
17959
  allow?: string[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vinicunca/eslint-config",
3
3
  "type": "module",
4
- "version": "3.26.0",
4
+ "version": "3.27.0",
5
5
  "description": "Vinicunca ESLint config",
6
6
  "author": {
7
7
  "name": "praburangki",
@@ -109,12 +109,12 @@
109
109
  "@antfu/install-pkg": "^1.1.0",
110
110
  "@clack/prompts": "^0.11.0",
111
111
  "@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
112
- "@eslint/markdown": "^7.2.0",
112
+ "@eslint/markdown": "^7.4.0",
113
113
  "@stylistic/eslint-plugin": "^5.4.0",
114
- "@typescript-eslint/eslint-plugin": "^8.44.0",
115
- "@typescript-eslint/parser": "^8.44.0",
116
- "@unocss/eslint-plugin": "^66.5.1",
117
- "@vitest/eslint-plugin": "^1.3.12",
114
+ "@typescript-eslint/eslint-plugin": "^8.46.0",
115
+ "@typescript-eslint/parser": "^8.46.0",
116
+ "@unocss/eslint-plugin": "^66.5.2",
117
+ "@vitest/eslint-plugin": "^1.3.16",
118
118
  "eslint-config-flat-gitignore": "^2.1.0",
119
119
  "eslint-flat-config-utils": "^2.1.4",
120
120
  "eslint-merge-processors": "^2.0.0",
@@ -122,22 +122,22 @@
122
122
  "eslint-plugin-command": "^3.3.1",
123
123
  "eslint-plugin-format": "^1.0.2",
124
124
  "eslint-plugin-import-lite": "^0.3.0",
125
- "eslint-plugin-jsdoc": "^59.0.2",
126
- "eslint-plugin-jsonc": "^2.20.1",
125
+ "eslint-plugin-jsdoc": "^61.0.1",
126
+ "eslint-plugin-jsonc": "^2.21.0",
127
127
  "eslint-plugin-n": "^17.23.1",
128
128
  "eslint-plugin-no-only-tests": "^3.3.0",
129
- "eslint-plugin-perfectionist": "^4.15.0",
130
- "eslint-plugin-pnpm": "^1.1.1",
129
+ "eslint-plugin-perfectionist": "^4.15.1",
130
+ "eslint-plugin-pnpm": "^1.2.0",
131
131
  "eslint-plugin-regexp": "^2.10.0",
132
132
  "eslint-plugin-sonarjs": "^3.0.5",
133
133
  "eslint-plugin-toml": "^0.12.0",
134
134
  "eslint-plugin-unicorn": "^61.0.2",
135
135
  "eslint-plugin-unused-imports": "^4.2.0",
136
- "eslint-plugin-vue": "^10.4.0",
137
- "eslint-plugin-yml": "^1.18.0",
136
+ "eslint-plugin-vue": "^10.5.0",
137
+ "eslint-plugin-yml": "^1.19.0",
138
138
  "eslint-processor-vue-blocks": "^2.0.0",
139
139
  "globals": "^16.4.0",
140
- "jsonc-eslint-parser": "^2.4.0",
140
+ "jsonc-eslint-parser": "^2.4.1",
141
141
  "local-pkg": "^1.1.2",
142
142
  "toml-eslint-parser": "^0.10.0",
143
143
  "vue-eslint-parser": "^10.2.0",