@kazupon/eslint-config 0.15.0 → 0.17.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/README.md +24 -22
- package/dist/configs/comments.d.cts +1 -1
- package/dist/configs/comments.d.ts +1 -1
- package/dist/configs/imports.d.cts +21 -0
- package/dist/configs/imports.d.ts +21 -0
- package/dist/configs/index.d.cts +16 -15
- package/dist/configs/index.d.ts +16 -15
- package/dist/configs/javascript.d.cts +1 -1
- package/dist/configs/javascript.d.ts +1 -1
- package/dist/configs/jsdoc.d.cts +1 -1
- package/dist/configs/jsdoc.d.ts +1 -1
- package/dist/configs/jsonc.d.cts +1 -1
- package/dist/configs/jsonc.d.ts +1 -1
- package/dist/configs/prettier.d.cts +1 -1
- package/dist/configs/prettier.d.ts +1 -1
- package/dist/configs/promise.d.cts +1 -1
- package/dist/configs/promise.d.ts +1 -1
- package/dist/configs/react.d.cts +2 -2
- package/dist/configs/react.d.ts +2 -2
- package/dist/configs/regexp.d.cts +1 -1
- package/dist/configs/regexp.d.ts +1 -1
- package/dist/configs/svelte.d.cts +2 -2
- package/dist/configs/svelte.d.ts +2 -2
- package/dist/configs/toml.d.cts +1 -1
- package/dist/configs/toml.d.ts +1 -1
- package/dist/configs/typescript.d.cts +1 -1
- package/dist/configs/typescript.d.ts +1 -1
- package/dist/configs/unicorn.d.cts +1 -1
- package/dist/configs/unicorn.d.ts +1 -1
- package/dist/configs/vitest.d.cts +1 -1
- package/dist/configs/vitest.d.ts +1 -1
- package/dist/configs/vue.d.cts +19 -4
- package/dist/configs/vue.d.ts +19 -4
- package/dist/configs/yml.d.cts +1 -1
- package/dist/configs/yml.d.ts +1 -1
- package/dist/index.cjs +265 -182
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +260 -183
- package/dist/types/gens/eslint.d.cts +2 -1
- package/dist/types/gens/eslint.d.ts +2 -1
- package/dist/types/gens/imports.d.cts +519 -0
- package/dist/types/gens/imports.d.ts +519 -0
- package/dist/types/gens/vue.d.cts +281 -0
- package/dist/types/gens/vue.d.ts +281 -0
- package/dist/types/index.d.cts +18 -17
- package/dist/types/index.d.ts +18 -17
- package/dist/types/overrides.d.cts +1 -1
- package/dist/types/overrides.d.ts +1 -1
- package/package.json +32 -2
|
@@ -1,5 +1,83 @@
|
|
|
1
1
|
import type { Linter } from 'eslint';
|
|
2
2
|
export interface VueRules {
|
|
3
|
+
'vue-composable/composable-placement'?: Linter.RuleEntry<[]>;
|
|
4
|
+
'vue-composable/lifecycle-placement'?: Linter.RuleEntry<[]>;
|
|
5
|
+
/**
|
|
6
|
+
* enforce the `<style>` tags to be plain or have the `scoped` or `module` attribute
|
|
7
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/enforce-style-type.html
|
|
8
|
+
*/
|
|
9
|
+
'vue-scoped-css/enforce-style-type'?: Linter.RuleEntry<VueScopedCssEnforceStyleType>;
|
|
10
|
+
/**
|
|
11
|
+
* disallow using deprecated deep combinators
|
|
12
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-deprecated-deep-combinator.html
|
|
13
|
+
*/
|
|
14
|
+
'vue-scoped-css/no-deprecated-deep-combinator'?: Linter.RuleEntry<[]>;
|
|
15
|
+
/**
|
|
16
|
+
* disallow v-enter and v-leave classes.
|
|
17
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-deprecated-v-enter-v-leave-class.html
|
|
18
|
+
*/
|
|
19
|
+
'vue-scoped-css/no-deprecated-v-enter-v-leave-class'?: Linter.RuleEntry<[]>;
|
|
20
|
+
/**
|
|
21
|
+
* disallow parent selector for `::v-global` pseudo-element
|
|
22
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-parent-of-v-global.html
|
|
23
|
+
*/
|
|
24
|
+
'vue-scoped-css/no-parent-of-v-global'?: Linter.RuleEntry<[]>;
|
|
25
|
+
/**
|
|
26
|
+
* disallow parsing errors in `<style>`
|
|
27
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-parsing-error.html
|
|
28
|
+
*/
|
|
29
|
+
'vue-scoped-css/no-parsing-error'?: Linter.RuleEntry<[]>;
|
|
30
|
+
/**
|
|
31
|
+
* disallow `@keyframes` which don't use in Scoped CSS
|
|
32
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-unused-keyframes.html
|
|
33
|
+
*/
|
|
34
|
+
'vue-scoped-css/no-unused-keyframes'?: Linter.RuleEntry<VueScopedCssNoUnusedKeyframes>;
|
|
35
|
+
/**
|
|
36
|
+
* disallow selectors defined in Scoped CSS that don't use in `<template>`
|
|
37
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-unused-selector.html
|
|
38
|
+
*/
|
|
39
|
+
'vue-scoped-css/no-unused-selector'?: Linter.RuleEntry<VueScopedCssNoUnusedSelector>;
|
|
40
|
+
/**
|
|
41
|
+
* enforce the `<style>` tags to has the `scoped` attribute
|
|
42
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-scoped.html
|
|
43
|
+
* @deprecated
|
|
44
|
+
*/
|
|
45
|
+
'vue-scoped-css/require-scoped'?: Linter.RuleEntry<VueScopedCssRequireScoped>;
|
|
46
|
+
/**
|
|
47
|
+
* disallow selectors defined that is not used inside `<template>`
|
|
48
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-selector-used-inside.html
|
|
49
|
+
*/
|
|
50
|
+
'vue-scoped-css/require-selector-used-inside'?: Linter.RuleEntry<VueScopedCssRequireSelectorUsedInside>;
|
|
51
|
+
/**
|
|
52
|
+
* require selector argument to be passed to `::v-deep()`
|
|
53
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-deep-argument.html
|
|
54
|
+
*/
|
|
55
|
+
'vue-scoped-css/require-v-deep-argument'?: Linter.RuleEntry<[]>;
|
|
56
|
+
/**
|
|
57
|
+
* require selector argument to be passed to `::v-global()`
|
|
58
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-global-argument.html
|
|
59
|
+
*/
|
|
60
|
+
'vue-scoped-css/require-v-global-argument'?: Linter.RuleEntry<[]>;
|
|
61
|
+
/**
|
|
62
|
+
* require selector argument to be passed to `::v-slotted()`
|
|
63
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-slotted-argument.html
|
|
64
|
+
*/
|
|
65
|
+
'vue-scoped-css/require-v-slotted-argument'?: Linter.RuleEntry<[]>;
|
|
66
|
+
/**
|
|
67
|
+
* enforce `:deep()`/`::v-deep()` style
|
|
68
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-deep-pseudo-style.html
|
|
69
|
+
*/
|
|
70
|
+
'vue-scoped-css/v-deep-pseudo-style'?: Linter.RuleEntry<VueScopedCssVDeepPseudoStyle>;
|
|
71
|
+
/**
|
|
72
|
+
* enforce `:global()`/`::v-global()` style
|
|
73
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-global-pseudo-style.html
|
|
74
|
+
*/
|
|
75
|
+
'vue-scoped-css/v-global-pseudo-style'?: Linter.RuleEntry<VueScopedCssVGlobalPseudoStyle>;
|
|
76
|
+
/**
|
|
77
|
+
* enforce `:slotted()`/`::v-slotted()` style
|
|
78
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-slotted-pseudo-style.html
|
|
79
|
+
*/
|
|
80
|
+
'vue-scoped-css/v-slotted-pseudo-style'?: Linter.RuleEntry<VueScopedCssVSlottedPseudoStyle>;
|
|
3
81
|
/**
|
|
4
82
|
* Enforce linebreaks after opening and before closing array brackets in `<template>`
|
|
5
83
|
* @see https://eslint.vuejs.org/rules/array-bracket-newline.html
|
|
@@ -1211,7 +1289,128 @@ export interface VueRules {
|
|
|
1211
1289
|
* @see https://eslint.vuejs.org/rules/valid-v-text.html
|
|
1212
1290
|
*/
|
|
1213
1291
|
'vue/valid-v-text'?: Linter.RuleEntry<[]>;
|
|
1292
|
+
/**
|
|
1293
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/alt-text.html
|
|
1294
|
+
*/
|
|
1295
|
+
'vuejs-accessibility/alt-text'?: Linter.RuleEntry<VuejsAccessibilityAltText>;
|
|
1296
|
+
/**
|
|
1297
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/anchor-has-content.html
|
|
1298
|
+
*/
|
|
1299
|
+
'vuejs-accessibility/anchor-has-content'?: Linter.RuleEntry<VuejsAccessibilityAnchorHasContent>;
|
|
1300
|
+
/**
|
|
1301
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-props.html
|
|
1302
|
+
*/
|
|
1303
|
+
'vuejs-accessibility/aria-props'?: Linter.RuleEntry<[]>;
|
|
1304
|
+
/**
|
|
1305
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-role.html
|
|
1306
|
+
*/
|
|
1307
|
+
'vuejs-accessibility/aria-role'?: Linter.RuleEntry<VuejsAccessibilityAriaRole>;
|
|
1308
|
+
/**
|
|
1309
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-unsupported-elements.html
|
|
1310
|
+
*/
|
|
1311
|
+
'vuejs-accessibility/aria-unsupported-elements'?: Linter.RuleEntry<[]>;
|
|
1312
|
+
/**
|
|
1313
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/click-events-have-key-events.html
|
|
1314
|
+
*/
|
|
1315
|
+
'vuejs-accessibility/click-events-have-key-events'?: Linter.RuleEntry<[]>;
|
|
1316
|
+
/**
|
|
1317
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/form-control-has-label.html
|
|
1318
|
+
*/
|
|
1319
|
+
'vuejs-accessibility/form-control-has-label'?: Linter.RuleEntry<VuejsAccessibilityFormControlHasLabel>;
|
|
1320
|
+
/**
|
|
1321
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/heading-has-content.html
|
|
1322
|
+
*/
|
|
1323
|
+
'vuejs-accessibility/heading-has-content'?: Linter.RuleEntry<VuejsAccessibilityHeadingHasContent>;
|
|
1324
|
+
/**
|
|
1325
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/iframe-has-title.html
|
|
1326
|
+
*/
|
|
1327
|
+
'vuejs-accessibility/iframe-has-title'?: Linter.RuleEntry<[]>;
|
|
1328
|
+
/**
|
|
1329
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/interactive-supports-focus.html
|
|
1330
|
+
*/
|
|
1331
|
+
'vuejs-accessibility/interactive-supports-focus'?: Linter.RuleEntry<VuejsAccessibilityInteractiveSupportsFocus>;
|
|
1332
|
+
/**
|
|
1333
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/label-has-for.html
|
|
1334
|
+
*/
|
|
1335
|
+
'vuejs-accessibility/label-has-for'?: Linter.RuleEntry<VuejsAccessibilityLabelHasFor>;
|
|
1336
|
+
/**
|
|
1337
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/media-has-caption.html
|
|
1338
|
+
*/
|
|
1339
|
+
'vuejs-accessibility/media-has-caption'?: Linter.RuleEntry<VuejsAccessibilityMediaHasCaption>;
|
|
1340
|
+
/**
|
|
1341
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/mouse-events-have-key-events.html
|
|
1342
|
+
*/
|
|
1343
|
+
'vuejs-accessibility/mouse-events-have-key-events'?: Linter.RuleEntry<[]>;
|
|
1344
|
+
/**
|
|
1345
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-access-key.html
|
|
1346
|
+
*/
|
|
1347
|
+
'vuejs-accessibility/no-access-key'?: Linter.RuleEntry<[]>;
|
|
1348
|
+
/**
|
|
1349
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-aria-hidden-on-focusable.html
|
|
1350
|
+
*/
|
|
1351
|
+
'vuejs-accessibility/no-aria-hidden-on-focusable'?: Linter.RuleEntry<[]>;
|
|
1352
|
+
/**
|
|
1353
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-autofocus.html
|
|
1354
|
+
*/
|
|
1355
|
+
'vuejs-accessibility/no-autofocus'?: Linter.RuleEntry<VuejsAccessibilityNoAutofocus>;
|
|
1356
|
+
/**
|
|
1357
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-distracting-elements.html
|
|
1358
|
+
*/
|
|
1359
|
+
'vuejs-accessibility/no-distracting-elements'?: Linter.RuleEntry<VuejsAccessibilityNoDistractingElements>;
|
|
1360
|
+
/**
|
|
1361
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-onchange.html
|
|
1362
|
+
* @deprecated
|
|
1363
|
+
*/
|
|
1364
|
+
'vuejs-accessibility/no-onchange'?: Linter.RuleEntry<[]>;
|
|
1365
|
+
/**
|
|
1366
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-redundant-roles.html
|
|
1367
|
+
*/
|
|
1368
|
+
'vuejs-accessibility/no-redundant-roles'?: Linter.RuleEntry<VuejsAccessibilityNoRedundantRoles>;
|
|
1369
|
+
/**
|
|
1370
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-role-presentation-on-focusable.html
|
|
1371
|
+
*/
|
|
1372
|
+
'vuejs-accessibility/no-role-presentation-on-focusable'?: Linter.RuleEntry<[]>;
|
|
1373
|
+
/**
|
|
1374
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-static-element-interactions.html
|
|
1375
|
+
*/
|
|
1376
|
+
'vuejs-accessibility/no-static-element-interactions'?: Linter.RuleEntry<[]>;
|
|
1377
|
+
/**
|
|
1378
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/role-has-required-aria-props.html
|
|
1379
|
+
*/
|
|
1380
|
+
'vuejs-accessibility/role-has-required-aria-props'?: Linter.RuleEntry<[]>;
|
|
1381
|
+
/**
|
|
1382
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/tabindex-no-positive.html
|
|
1383
|
+
*/
|
|
1384
|
+
'vuejs-accessibility/tabindex-no-positive'?: Linter.RuleEntry<[]>;
|
|
1214
1385
|
}
|
|
1386
|
+
type VueScopedCssEnforceStyleType = [] | [
|
|
1387
|
+
{
|
|
1388
|
+
allows?: [("plain" | "scoped" | "module"), ...(("plain" | "scoped" | "module"))[]];
|
|
1389
|
+
}
|
|
1390
|
+
];
|
|
1391
|
+
type VueScopedCssNoUnusedKeyframes = [] | [
|
|
1392
|
+
{
|
|
1393
|
+
checkUnscoped?: boolean;
|
|
1394
|
+
}
|
|
1395
|
+
];
|
|
1396
|
+
type VueScopedCssNoUnusedSelector = [] | [
|
|
1397
|
+
{
|
|
1398
|
+
ignoreBEMModifier?: boolean;
|
|
1399
|
+
captureClassesFromDoc?: [] | [string];
|
|
1400
|
+
checkUnscoped?: boolean;
|
|
1401
|
+
}
|
|
1402
|
+
];
|
|
1403
|
+
type VueScopedCssRequireScoped = [] | [("always" | "never")];
|
|
1404
|
+
type VueScopedCssRequireSelectorUsedInside = [] | [
|
|
1405
|
+
{
|
|
1406
|
+
ignoreBEMModifier?: boolean;
|
|
1407
|
+
captureClassesFromDoc?: [] | [string];
|
|
1408
|
+
checkUnscoped?: boolean;
|
|
1409
|
+
}
|
|
1410
|
+
];
|
|
1411
|
+
type VueScopedCssVDeepPseudoStyle = [] | [(":deep" | "::v-deep")];
|
|
1412
|
+
type VueScopedCssVGlobalPseudoStyle = [] | [(":global" | "::v-global")];
|
|
1413
|
+
type VueScopedCssVSlottedPseudoStyle = [] | [(":slotted" | "::v-slotted")];
|
|
1215
1414
|
type VueArrayBracketNewline = [] | [
|
|
1216
1415
|
(("always" | "never" | "consistent") | {
|
|
1217
1416
|
multiline?: boolean;
|
|
@@ -2462,4 +2661,86 @@ type VueValidVSlot = [] | [
|
|
|
2462
2661
|
allowModifiers?: boolean;
|
|
2463
2662
|
}
|
|
2464
2663
|
];
|
|
2664
|
+
type VuejsAccessibilityAltText = [] | [
|
|
2665
|
+
{
|
|
2666
|
+
elements?: string[];
|
|
2667
|
+
img?: string[];
|
|
2668
|
+
object?: string[];
|
|
2669
|
+
area?: string[];
|
|
2670
|
+
"input[type=\"image\"]"?: string[];
|
|
2671
|
+
[k: string]: unknown | undefined;
|
|
2672
|
+
}
|
|
2673
|
+
];
|
|
2674
|
+
type VuejsAccessibilityAnchorHasContent = [] | [
|
|
2675
|
+
{
|
|
2676
|
+
components?: string[];
|
|
2677
|
+
accessibleChildren?: string[];
|
|
2678
|
+
accessibleDirectives?: string[];
|
|
2679
|
+
[k: string]: unknown | undefined;
|
|
2680
|
+
}
|
|
2681
|
+
];
|
|
2682
|
+
type VuejsAccessibilityAriaRole = [] | [
|
|
2683
|
+
{
|
|
2684
|
+
ignoreNonDOM?: boolean;
|
|
2685
|
+
}
|
|
2686
|
+
];
|
|
2687
|
+
type VuejsAccessibilityFormControlHasLabel = [] | [
|
|
2688
|
+
{
|
|
2689
|
+
labelComponents?: string[];
|
|
2690
|
+
controlComponents?: string[];
|
|
2691
|
+
[k: string]: unknown | undefined;
|
|
2692
|
+
}
|
|
2693
|
+
];
|
|
2694
|
+
type VuejsAccessibilityHeadingHasContent = [] | [
|
|
2695
|
+
{
|
|
2696
|
+
components?: string[];
|
|
2697
|
+
accessibleChildren?: string[];
|
|
2698
|
+
accessibleDirectives?: string[];
|
|
2699
|
+
[k: string]: unknown | undefined;
|
|
2700
|
+
}
|
|
2701
|
+
];
|
|
2702
|
+
type VuejsAccessibilityInteractiveSupportsFocus = [] | [
|
|
2703
|
+
{
|
|
2704
|
+
tabbable?: ("button" | "checkbox" | "columnheader" | "combobox" | "grid" | "gridcell" | "link" | "listbox" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "option" | "progressbar" | "radio" | "radiogroup" | "row" | "rowheader" | "scrollbar" | "searchbox" | "slider" | "spinbutton" | "switch" | "tab" | "tablist" | "textbox" | "tree" | "treegrid" | "treeitem" | "doc-backlink" | "doc-biblioref" | "doc-glossref" | "doc-noteref")[];
|
|
2705
|
+
[k: string]: unknown | undefined;
|
|
2706
|
+
}
|
|
2707
|
+
];
|
|
2708
|
+
type VuejsAccessibilityLabelHasFor = [] | [
|
|
2709
|
+
{
|
|
2710
|
+
components?: string[];
|
|
2711
|
+
controlComponents?: string[];
|
|
2712
|
+
required?: (("nesting" | "id") | {
|
|
2713
|
+
some: ("nesting" | "id")[];
|
|
2714
|
+
[k: string]: unknown | undefined;
|
|
2715
|
+
} | {
|
|
2716
|
+
every: ("nesting" | "id")[];
|
|
2717
|
+
[k: string]: unknown | undefined;
|
|
2718
|
+
});
|
|
2719
|
+
allowChildren?: boolean;
|
|
2720
|
+
[k: string]: unknown | undefined;
|
|
2721
|
+
}
|
|
2722
|
+
];
|
|
2723
|
+
type VuejsAccessibilityMediaHasCaption = [] | [
|
|
2724
|
+
{
|
|
2725
|
+
audio?: string[];
|
|
2726
|
+
track?: string[];
|
|
2727
|
+
video?: string[];
|
|
2728
|
+
[k: string]: unknown | undefined;
|
|
2729
|
+
}
|
|
2730
|
+
];
|
|
2731
|
+
type VuejsAccessibilityNoAutofocus = [] | [
|
|
2732
|
+
{
|
|
2733
|
+
ignoreNonDOM?: boolean;
|
|
2734
|
+
}
|
|
2735
|
+
];
|
|
2736
|
+
type VuejsAccessibilityNoDistractingElements = [] | [
|
|
2737
|
+
{
|
|
2738
|
+
[k: string]: unknown | undefined;
|
|
2739
|
+
}
|
|
2740
|
+
];
|
|
2741
|
+
type VuejsAccessibilityNoRedundantRoles = [] | [
|
|
2742
|
+
{
|
|
2743
|
+
[k: string]: string[] | undefined;
|
|
2744
|
+
}
|
|
2745
|
+
];
|
|
2465
2746
|
export {};
|
package/dist/types/gens/vue.d.ts
CHANGED
|
@@ -1,5 +1,83 @@
|
|
|
1
1
|
import type { Linter } from 'eslint';
|
|
2
2
|
export interface VueRules {
|
|
3
|
+
'vue-composable/composable-placement'?: Linter.RuleEntry<[]>;
|
|
4
|
+
'vue-composable/lifecycle-placement'?: Linter.RuleEntry<[]>;
|
|
5
|
+
/**
|
|
6
|
+
* enforce the `<style>` tags to be plain or have the `scoped` or `module` attribute
|
|
7
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/enforce-style-type.html
|
|
8
|
+
*/
|
|
9
|
+
'vue-scoped-css/enforce-style-type'?: Linter.RuleEntry<VueScopedCssEnforceStyleType>;
|
|
10
|
+
/**
|
|
11
|
+
* disallow using deprecated deep combinators
|
|
12
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-deprecated-deep-combinator.html
|
|
13
|
+
*/
|
|
14
|
+
'vue-scoped-css/no-deprecated-deep-combinator'?: Linter.RuleEntry<[]>;
|
|
15
|
+
/**
|
|
16
|
+
* disallow v-enter and v-leave classes.
|
|
17
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-deprecated-v-enter-v-leave-class.html
|
|
18
|
+
*/
|
|
19
|
+
'vue-scoped-css/no-deprecated-v-enter-v-leave-class'?: Linter.RuleEntry<[]>;
|
|
20
|
+
/**
|
|
21
|
+
* disallow parent selector for `::v-global` pseudo-element
|
|
22
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-parent-of-v-global.html
|
|
23
|
+
*/
|
|
24
|
+
'vue-scoped-css/no-parent-of-v-global'?: Linter.RuleEntry<[]>;
|
|
25
|
+
/**
|
|
26
|
+
* disallow parsing errors in `<style>`
|
|
27
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-parsing-error.html
|
|
28
|
+
*/
|
|
29
|
+
'vue-scoped-css/no-parsing-error'?: Linter.RuleEntry<[]>;
|
|
30
|
+
/**
|
|
31
|
+
* disallow `@keyframes` which don't use in Scoped CSS
|
|
32
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-unused-keyframes.html
|
|
33
|
+
*/
|
|
34
|
+
'vue-scoped-css/no-unused-keyframes'?: Linter.RuleEntry<VueScopedCssNoUnusedKeyframes>;
|
|
35
|
+
/**
|
|
36
|
+
* disallow selectors defined in Scoped CSS that don't use in `<template>`
|
|
37
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/no-unused-selector.html
|
|
38
|
+
*/
|
|
39
|
+
'vue-scoped-css/no-unused-selector'?: Linter.RuleEntry<VueScopedCssNoUnusedSelector>;
|
|
40
|
+
/**
|
|
41
|
+
* enforce the `<style>` tags to has the `scoped` attribute
|
|
42
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-scoped.html
|
|
43
|
+
* @deprecated
|
|
44
|
+
*/
|
|
45
|
+
'vue-scoped-css/require-scoped'?: Linter.RuleEntry<VueScopedCssRequireScoped>;
|
|
46
|
+
/**
|
|
47
|
+
* disallow selectors defined that is not used inside `<template>`
|
|
48
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-selector-used-inside.html
|
|
49
|
+
*/
|
|
50
|
+
'vue-scoped-css/require-selector-used-inside'?: Linter.RuleEntry<VueScopedCssRequireSelectorUsedInside>;
|
|
51
|
+
/**
|
|
52
|
+
* require selector argument to be passed to `::v-deep()`
|
|
53
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-deep-argument.html
|
|
54
|
+
*/
|
|
55
|
+
'vue-scoped-css/require-v-deep-argument'?: Linter.RuleEntry<[]>;
|
|
56
|
+
/**
|
|
57
|
+
* require selector argument to be passed to `::v-global()`
|
|
58
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-global-argument.html
|
|
59
|
+
*/
|
|
60
|
+
'vue-scoped-css/require-v-global-argument'?: Linter.RuleEntry<[]>;
|
|
61
|
+
/**
|
|
62
|
+
* require selector argument to be passed to `::v-slotted()`
|
|
63
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/require-v-slotted-argument.html
|
|
64
|
+
*/
|
|
65
|
+
'vue-scoped-css/require-v-slotted-argument'?: Linter.RuleEntry<[]>;
|
|
66
|
+
/**
|
|
67
|
+
* enforce `:deep()`/`::v-deep()` style
|
|
68
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-deep-pseudo-style.html
|
|
69
|
+
*/
|
|
70
|
+
'vue-scoped-css/v-deep-pseudo-style'?: Linter.RuleEntry<VueScopedCssVDeepPseudoStyle>;
|
|
71
|
+
/**
|
|
72
|
+
* enforce `:global()`/`::v-global()` style
|
|
73
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-global-pseudo-style.html
|
|
74
|
+
*/
|
|
75
|
+
'vue-scoped-css/v-global-pseudo-style'?: Linter.RuleEntry<VueScopedCssVGlobalPseudoStyle>;
|
|
76
|
+
/**
|
|
77
|
+
* enforce `:slotted()`/`::v-slotted()` style
|
|
78
|
+
* @see https://future-architect.github.io/eslint-plugin-vue-scoped-css/rules/v-slotted-pseudo-style.html
|
|
79
|
+
*/
|
|
80
|
+
'vue-scoped-css/v-slotted-pseudo-style'?: Linter.RuleEntry<VueScopedCssVSlottedPseudoStyle>;
|
|
3
81
|
/**
|
|
4
82
|
* Enforce linebreaks after opening and before closing array brackets in `<template>`
|
|
5
83
|
* @see https://eslint.vuejs.org/rules/array-bracket-newline.html
|
|
@@ -1211,7 +1289,128 @@ export interface VueRules {
|
|
|
1211
1289
|
* @see https://eslint.vuejs.org/rules/valid-v-text.html
|
|
1212
1290
|
*/
|
|
1213
1291
|
'vue/valid-v-text'?: Linter.RuleEntry<[]>;
|
|
1292
|
+
/**
|
|
1293
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/alt-text.html
|
|
1294
|
+
*/
|
|
1295
|
+
'vuejs-accessibility/alt-text'?: Linter.RuleEntry<VuejsAccessibilityAltText>;
|
|
1296
|
+
/**
|
|
1297
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/anchor-has-content.html
|
|
1298
|
+
*/
|
|
1299
|
+
'vuejs-accessibility/anchor-has-content'?: Linter.RuleEntry<VuejsAccessibilityAnchorHasContent>;
|
|
1300
|
+
/**
|
|
1301
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-props.html
|
|
1302
|
+
*/
|
|
1303
|
+
'vuejs-accessibility/aria-props'?: Linter.RuleEntry<[]>;
|
|
1304
|
+
/**
|
|
1305
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-role.html
|
|
1306
|
+
*/
|
|
1307
|
+
'vuejs-accessibility/aria-role'?: Linter.RuleEntry<VuejsAccessibilityAriaRole>;
|
|
1308
|
+
/**
|
|
1309
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/aria-unsupported-elements.html
|
|
1310
|
+
*/
|
|
1311
|
+
'vuejs-accessibility/aria-unsupported-elements'?: Linter.RuleEntry<[]>;
|
|
1312
|
+
/**
|
|
1313
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/click-events-have-key-events.html
|
|
1314
|
+
*/
|
|
1315
|
+
'vuejs-accessibility/click-events-have-key-events'?: Linter.RuleEntry<[]>;
|
|
1316
|
+
/**
|
|
1317
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/form-control-has-label.html
|
|
1318
|
+
*/
|
|
1319
|
+
'vuejs-accessibility/form-control-has-label'?: Linter.RuleEntry<VuejsAccessibilityFormControlHasLabel>;
|
|
1320
|
+
/**
|
|
1321
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/heading-has-content.html
|
|
1322
|
+
*/
|
|
1323
|
+
'vuejs-accessibility/heading-has-content'?: Linter.RuleEntry<VuejsAccessibilityHeadingHasContent>;
|
|
1324
|
+
/**
|
|
1325
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/iframe-has-title.html
|
|
1326
|
+
*/
|
|
1327
|
+
'vuejs-accessibility/iframe-has-title'?: Linter.RuleEntry<[]>;
|
|
1328
|
+
/**
|
|
1329
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/interactive-supports-focus.html
|
|
1330
|
+
*/
|
|
1331
|
+
'vuejs-accessibility/interactive-supports-focus'?: Linter.RuleEntry<VuejsAccessibilityInteractiveSupportsFocus>;
|
|
1332
|
+
/**
|
|
1333
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/label-has-for.html
|
|
1334
|
+
*/
|
|
1335
|
+
'vuejs-accessibility/label-has-for'?: Linter.RuleEntry<VuejsAccessibilityLabelHasFor>;
|
|
1336
|
+
/**
|
|
1337
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/media-has-caption.html
|
|
1338
|
+
*/
|
|
1339
|
+
'vuejs-accessibility/media-has-caption'?: Linter.RuleEntry<VuejsAccessibilityMediaHasCaption>;
|
|
1340
|
+
/**
|
|
1341
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/mouse-events-have-key-events.html
|
|
1342
|
+
*/
|
|
1343
|
+
'vuejs-accessibility/mouse-events-have-key-events'?: Linter.RuleEntry<[]>;
|
|
1344
|
+
/**
|
|
1345
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-access-key.html
|
|
1346
|
+
*/
|
|
1347
|
+
'vuejs-accessibility/no-access-key'?: Linter.RuleEntry<[]>;
|
|
1348
|
+
/**
|
|
1349
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-aria-hidden-on-focusable.html
|
|
1350
|
+
*/
|
|
1351
|
+
'vuejs-accessibility/no-aria-hidden-on-focusable'?: Linter.RuleEntry<[]>;
|
|
1352
|
+
/**
|
|
1353
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-autofocus.html
|
|
1354
|
+
*/
|
|
1355
|
+
'vuejs-accessibility/no-autofocus'?: Linter.RuleEntry<VuejsAccessibilityNoAutofocus>;
|
|
1356
|
+
/**
|
|
1357
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-distracting-elements.html
|
|
1358
|
+
*/
|
|
1359
|
+
'vuejs-accessibility/no-distracting-elements'?: Linter.RuleEntry<VuejsAccessibilityNoDistractingElements>;
|
|
1360
|
+
/**
|
|
1361
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-onchange.html
|
|
1362
|
+
* @deprecated
|
|
1363
|
+
*/
|
|
1364
|
+
'vuejs-accessibility/no-onchange'?: Linter.RuleEntry<[]>;
|
|
1365
|
+
/**
|
|
1366
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-redundant-roles.html
|
|
1367
|
+
*/
|
|
1368
|
+
'vuejs-accessibility/no-redundant-roles'?: Linter.RuleEntry<VuejsAccessibilityNoRedundantRoles>;
|
|
1369
|
+
/**
|
|
1370
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-role-presentation-on-focusable.html
|
|
1371
|
+
*/
|
|
1372
|
+
'vuejs-accessibility/no-role-presentation-on-focusable'?: Linter.RuleEntry<[]>;
|
|
1373
|
+
/**
|
|
1374
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/no-static-element-interactions.html
|
|
1375
|
+
*/
|
|
1376
|
+
'vuejs-accessibility/no-static-element-interactions'?: Linter.RuleEntry<[]>;
|
|
1377
|
+
/**
|
|
1378
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/role-has-required-aria-props.html
|
|
1379
|
+
*/
|
|
1380
|
+
'vuejs-accessibility/role-has-required-aria-props'?: Linter.RuleEntry<[]>;
|
|
1381
|
+
/**
|
|
1382
|
+
* @see https://vue-a11y.github.io/eslint-plugin-vuejs-accessibility/rules/tabindex-no-positive.html
|
|
1383
|
+
*/
|
|
1384
|
+
'vuejs-accessibility/tabindex-no-positive'?: Linter.RuleEntry<[]>;
|
|
1214
1385
|
}
|
|
1386
|
+
type VueScopedCssEnforceStyleType = [] | [
|
|
1387
|
+
{
|
|
1388
|
+
allows?: [("plain" | "scoped" | "module"), ...(("plain" | "scoped" | "module"))[]];
|
|
1389
|
+
}
|
|
1390
|
+
];
|
|
1391
|
+
type VueScopedCssNoUnusedKeyframes = [] | [
|
|
1392
|
+
{
|
|
1393
|
+
checkUnscoped?: boolean;
|
|
1394
|
+
}
|
|
1395
|
+
];
|
|
1396
|
+
type VueScopedCssNoUnusedSelector = [] | [
|
|
1397
|
+
{
|
|
1398
|
+
ignoreBEMModifier?: boolean;
|
|
1399
|
+
captureClassesFromDoc?: [] | [string];
|
|
1400
|
+
checkUnscoped?: boolean;
|
|
1401
|
+
}
|
|
1402
|
+
];
|
|
1403
|
+
type VueScopedCssRequireScoped = [] | [("always" | "never")];
|
|
1404
|
+
type VueScopedCssRequireSelectorUsedInside = [] | [
|
|
1405
|
+
{
|
|
1406
|
+
ignoreBEMModifier?: boolean;
|
|
1407
|
+
captureClassesFromDoc?: [] | [string];
|
|
1408
|
+
checkUnscoped?: boolean;
|
|
1409
|
+
}
|
|
1410
|
+
];
|
|
1411
|
+
type VueScopedCssVDeepPseudoStyle = [] | [(":deep" | "::v-deep")];
|
|
1412
|
+
type VueScopedCssVGlobalPseudoStyle = [] | [(":global" | "::v-global")];
|
|
1413
|
+
type VueScopedCssVSlottedPseudoStyle = [] | [(":slotted" | "::v-slotted")];
|
|
1215
1414
|
type VueArrayBracketNewline = [] | [
|
|
1216
1415
|
(("always" | "never" | "consistent") | {
|
|
1217
1416
|
multiline?: boolean;
|
|
@@ -2462,4 +2661,86 @@ type VueValidVSlot = [] | [
|
|
|
2462
2661
|
allowModifiers?: boolean;
|
|
2463
2662
|
}
|
|
2464
2663
|
];
|
|
2664
|
+
type VuejsAccessibilityAltText = [] | [
|
|
2665
|
+
{
|
|
2666
|
+
elements?: string[];
|
|
2667
|
+
img?: string[];
|
|
2668
|
+
object?: string[];
|
|
2669
|
+
area?: string[];
|
|
2670
|
+
"input[type=\"image\"]"?: string[];
|
|
2671
|
+
[k: string]: unknown | undefined;
|
|
2672
|
+
}
|
|
2673
|
+
];
|
|
2674
|
+
type VuejsAccessibilityAnchorHasContent = [] | [
|
|
2675
|
+
{
|
|
2676
|
+
components?: string[];
|
|
2677
|
+
accessibleChildren?: string[];
|
|
2678
|
+
accessibleDirectives?: string[];
|
|
2679
|
+
[k: string]: unknown | undefined;
|
|
2680
|
+
}
|
|
2681
|
+
];
|
|
2682
|
+
type VuejsAccessibilityAriaRole = [] | [
|
|
2683
|
+
{
|
|
2684
|
+
ignoreNonDOM?: boolean;
|
|
2685
|
+
}
|
|
2686
|
+
];
|
|
2687
|
+
type VuejsAccessibilityFormControlHasLabel = [] | [
|
|
2688
|
+
{
|
|
2689
|
+
labelComponents?: string[];
|
|
2690
|
+
controlComponents?: string[];
|
|
2691
|
+
[k: string]: unknown | undefined;
|
|
2692
|
+
}
|
|
2693
|
+
];
|
|
2694
|
+
type VuejsAccessibilityHeadingHasContent = [] | [
|
|
2695
|
+
{
|
|
2696
|
+
components?: string[];
|
|
2697
|
+
accessibleChildren?: string[];
|
|
2698
|
+
accessibleDirectives?: string[];
|
|
2699
|
+
[k: string]: unknown | undefined;
|
|
2700
|
+
}
|
|
2701
|
+
];
|
|
2702
|
+
type VuejsAccessibilityInteractiveSupportsFocus = [] | [
|
|
2703
|
+
{
|
|
2704
|
+
tabbable?: ("button" | "checkbox" | "columnheader" | "combobox" | "grid" | "gridcell" | "link" | "listbox" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "option" | "progressbar" | "radio" | "radiogroup" | "row" | "rowheader" | "scrollbar" | "searchbox" | "slider" | "spinbutton" | "switch" | "tab" | "tablist" | "textbox" | "tree" | "treegrid" | "treeitem" | "doc-backlink" | "doc-biblioref" | "doc-glossref" | "doc-noteref")[];
|
|
2705
|
+
[k: string]: unknown | undefined;
|
|
2706
|
+
}
|
|
2707
|
+
];
|
|
2708
|
+
type VuejsAccessibilityLabelHasFor = [] | [
|
|
2709
|
+
{
|
|
2710
|
+
components?: string[];
|
|
2711
|
+
controlComponents?: string[];
|
|
2712
|
+
required?: (("nesting" | "id") | {
|
|
2713
|
+
some: ("nesting" | "id")[];
|
|
2714
|
+
[k: string]: unknown | undefined;
|
|
2715
|
+
} | {
|
|
2716
|
+
every: ("nesting" | "id")[];
|
|
2717
|
+
[k: string]: unknown | undefined;
|
|
2718
|
+
});
|
|
2719
|
+
allowChildren?: boolean;
|
|
2720
|
+
[k: string]: unknown | undefined;
|
|
2721
|
+
}
|
|
2722
|
+
];
|
|
2723
|
+
type VuejsAccessibilityMediaHasCaption = [] | [
|
|
2724
|
+
{
|
|
2725
|
+
audio?: string[];
|
|
2726
|
+
track?: string[];
|
|
2727
|
+
video?: string[];
|
|
2728
|
+
[k: string]: unknown | undefined;
|
|
2729
|
+
}
|
|
2730
|
+
];
|
|
2731
|
+
type VuejsAccessibilityNoAutofocus = [] | [
|
|
2732
|
+
{
|
|
2733
|
+
ignoreNonDOM?: boolean;
|
|
2734
|
+
}
|
|
2735
|
+
];
|
|
2736
|
+
type VuejsAccessibilityNoDistractingElements = [] | [
|
|
2737
|
+
{
|
|
2738
|
+
[k: string]: unknown | undefined;
|
|
2739
|
+
}
|
|
2740
|
+
];
|
|
2741
|
+
type VuejsAccessibilityNoRedundantRoles = [] | [
|
|
2742
|
+
{
|
|
2743
|
+
[k: string]: string[] | undefined;
|
|
2744
|
+
}
|
|
2745
|
+
];
|
|
2465
2746
|
export {};
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
export * from './overrides';
|
|
2
|
-
export * from './gens/
|
|
3
|
-
export * from './gens/
|
|
4
|
-
export * from './gens/
|
|
5
|
-
export * from './gens/jsdoc';
|
|
6
|
-
export * from './gens/
|
|
7
|
-
export * from './gens/prettier';
|
|
8
|
-
export * from './gens/
|
|
9
|
-
export * from './gens/
|
|
10
|
-
export * from './gens/
|
|
11
|
-
export * from './gens/svelte';
|
|
12
|
-
export * from './gens/
|
|
13
|
-
export * from './gens/
|
|
14
|
-
export * from './gens/
|
|
15
|
-
export * from './gens/
|
|
16
|
-
export * from './gens/
|
|
17
|
-
export * from './gens/
|
|
1
|
+
export * from './overrides.ts';
|
|
2
|
+
export * from './gens/comments.ts';
|
|
3
|
+
export * from './gens/imports.ts';
|
|
4
|
+
export * from './gens/javascript.ts';
|
|
5
|
+
export * from './gens/jsdoc.ts';
|
|
6
|
+
export * from './gens/jsonc.ts';
|
|
7
|
+
export * from './gens/prettier.ts';
|
|
8
|
+
export * from './gens/promise.ts';
|
|
9
|
+
export * from './gens/react.ts';
|
|
10
|
+
export * from './gens/regexp.ts';
|
|
11
|
+
export * from './gens/svelte.ts';
|
|
12
|
+
export * from './gens/toml.ts';
|
|
13
|
+
export * from './gens/typescript.ts';
|
|
14
|
+
export * from './gens/unicorn.ts';
|
|
15
|
+
export * from './gens/vitest.ts';
|
|
16
|
+
export * from './gens/vue.ts';
|
|
17
|
+
export * from './gens/yml.ts';
|
|
18
|
+
export * from './gens/eslint.ts';
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
export * from './overrides';
|
|
2
|
-
export * from './gens/
|
|
3
|
-
export * from './gens/
|
|
4
|
-
export * from './gens/
|
|
5
|
-
export * from './gens/jsdoc';
|
|
6
|
-
export * from './gens/
|
|
7
|
-
export * from './gens/prettier';
|
|
8
|
-
export * from './gens/
|
|
9
|
-
export * from './gens/
|
|
10
|
-
export * from './gens/
|
|
11
|
-
export * from './gens/svelte';
|
|
12
|
-
export * from './gens/
|
|
13
|
-
export * from './gens/
|
|
14
|
-
export * from './gens/
|
|
15
|
-
export * from './gens/
|
|
16
|
-
export * from './gens/
|
|
17
|
-
export * from './gens/
|
|
1
|
+
export * from './overrides.ts';
|
|
2
|
+
export * from './gens/comments.ts';
|
|
3
|
+
export * from './gens/imports.ts';
|
|
4
|
+
export * from './gens/javascript.ts';
|
|
5
|
+
export * from './gens/jsdoc.ts';
|
|
6
|
+
export * from './gens/jsonc.ts';
|
|
7
|
+
export * from './gens/prettier.ts';
|
|
8
|
+
export * from './gens/promise.ts';
|
|
9
|
+
export * from './gens/react.ts';
|
|
10
|
+
export * from './gens/regexp.ts';
|
|
11
|
+
export * from './gens/svelte.ts';
|
|
12
|
+
export * from './gens/toml.ts';
|
|
13
|
+
export * from './gens/typescript.ts';
|
|
14
|
+
export * from './gens/unicorn.ts';
|
|
15
|
+
export * from './gens/vitest.ts';
|
|
16
|
+
export * from './gens/vue.ts';
|
|
17
|
+
export * from './gens/yml.ts';
|
|
18
|
+
export * from './gens/eslint.ts';
|