vize 0.212.0 → 0.213.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/dist/{config-C0bU5U2Z.d.mts → config-DthdNYvv.d.mts} +5 -5
- package/dist/config-DthdNYvv.d.mts.map +1 -0
- package/dist/config.d.mts +1 -1
- package/dist/index.d.mts +1 -1
- package/package.json +2 -2
- package/schemas/vize.config.schema.json +3 -3
- package/src/types/generated.ts +3 -3
- package/src/types/rules.ts +55 -0
- package/dist/config-C0bU5U2Z.d.mts.map +0 -1
|
@@ -166,10 +166,10 @@ interface LinterConfig {
|
|
|
166
166
|
* Enable linting
|
|
167
167
|
*/
|
|
168
168
|
enabled?: boolean;
|
|
169
|
-
/**
|
|
170
|
-
* Built-in lint preset
|
|
171
|
-
*/
|
|
169
|
+
/** Built-in lint preset */
|
|
172
170
|
preset?: "happy-path" | "opinionated" | "essential" | "incremental" | "ecosystem" | "nuxt";
|
|
171
|
+
/** Enable native type-aware lint rules from the active lint configuration */
|
|
172
|
+
typeAware?: boolean;
|
|
173
173
|
/**
|
|
174
174
|
* Rules to enable/disable
|
|
175
175
|
*/
|
|
@@ -589,7 +589,7 @@ interface VizeConfigEntry {
|
|
|
589
589
|
}
|
|
590
590
|
//#endregion
|
|
591
591
|
//#region src/types/rules.d.ts
|
|
592
|
-
declare const LINT_RULE_NAMES: readonly ["a11y/alt-text", "a11y/anchor-has-content", "a11y/anchor-is-valid", "a11y/aria-props", "a11y/aria-role", "a11y/aria-unsupported-elements", "a11y/click-events-have-key-events", "a11y/form-control-has-label", "a11y/heading-has-content", "a11y/heading-levels", "a11y/iframe-has-title", "a11y/img-alt", "a11y/interactive-supports-focus", "a11y/label-has-for", "a11y/landmark-roles", "a11y/media-has-caption", "a11y/mouse-events-have-key-events", "a11y/no-access-key", "a11y/no-aria-hidden-on-focusable", "a11y/no-autofocus", "a11y/no-distracting-elements", "a11y/no-i-for-icon", "a11y/no-redundant-roles", "a11y/no-refer-to-non-existent-id", "a11y/no-role-presentation-on-focusable", "a11y/no-static-element-interactions", "a11y/placeholder-label-option", "a11y/role-has-required-aria-props", "a11y/tabindex-no-positive", "a11y/use-list", "css/no-display-none", "css/no-hardcoded-values", "css/no-id-selectors", "css/no-important", "css/no-utility-classes", "css/no-v-bind-performance", "css/prefer-logical-properties", "css/prefer-nested-selectors", "css/prefer-slotted", "css/require-font-display", "ecosystem/nuxt-prefer-nuxt-link", "ecosystem/pinia-prefer-store-to-refs", "ecosystem/router-link-require-to", "ecosystem/void-link-require-href", "ecosystem/void-link-valid-method", "ecosystem/vue-i18n-no-missing-key", "ecosystem/vue-router-prefer-named-link", "ecosystem/vue-router-prefer-named-push", "ecosystem/vue-test-utils-no-html-snapshot", "html/deprecated-attr", "html/deprecated-element", "html/id-duplication", "html/no-consecutive-br", "html/no-duplicate-dt", "html/no-empty-palpable-content", "html/require-datetime", "petite-vue/no-unsupported-directive", "petite-vue/valid-v-effect", "petite-vue/valid-v-scope", "script/no-async-in-computed", "script/no-deep-destructure-in-props", "script/no-dupe-keys", "script/no-get-current-instance", "script/no-import-compiler-macros", "script/no-internal-imports", "script/no-next-tick", "script/no-options-api", "script/no-reactive-destructure", "script/no-reserved-identifiers", "script/no-side-effects-in-computed-properties", "script/no-top-level-ref-in-script", "script/no-with-defaults", "script/prefer-computed", "script/prefer-import-from-vue", "script/prefer-ref-over-reactive", "script/prefer-use-attrs", "script/prefer-use-id", "script/prefer-use-slots", "script/prefer-use-template-ref", "script/require-function-return-type", "script/require-symbol-provide", "ssr/no-browser-globals-in-ssr", "ssr/no-hydration-mismatch", "type/no-floating-promises", "type/no-reactivity-loss", "type/no-unsafe-template-binding", "type/require-typed-emits", "type/require-typed-props", "vapor/no-inline-template", "vapor/no-vue-lifecycle-events", "vapor/prefer-static-class", "vapor/require-vapor-attribute", "vue/attribute-hyphenation", "vue/attribute-order", "vue/component-definition-name-casing", "vue/component-name-in-template-casing", "vue/html-quotes", "vue/html-self-closing", "vue/multi-word-component-names", "vue/mustache-interpolation-spacing", "vue/no-boolean-attr-value", "vue/no-child-content", "vue/no-deprecated-v-bind-sync", "vue/no-deprecated-v-on-native-modifier", "vue/no-dupe-v-else-if", "vue/no-duplicate-attributes", "vue/no-inline-style", "vue/no-lone-template", "vue/no-multi-spaces", "vue/no-mutating-props", "vue/no-preprocessor-lang", "vue/no-reserved-component-names", "vue/no-script-non-standard-lang", "vue/no-src-attribute", "vue/no-template-key", "vue/no-template-lang", "vue/no-template-shadow", "vue/no-textarea-mustache", "vue/no-unsafe-url", "vue/no-unused-components", "vue/no-unused-properties", "vue/no-unused-vars", "vue/no-use-v-if-with-v-for", "vue/no-useless-template-attributes", "vue/no-v-html", "vue/no-v-text-v-html-on-component", "vue/permitted-contents", "vue/prefer-props-shorthand", "vue/prop-name-casing", "vue/require-component-is", "vue/require-component-registration", "vue/require-scoped-style", "vue/require-v-for-key", "vue/scoped-event-names", "vue/sfc-element-order", "vue/single-style-block", "vue/use-unique-element-ids", "vue/use-v-on-exact", "vue/v-bind-style", "vue/v-on-style", "vue/v-slot-style", "vue/valid-attribute-name", "vue/valid-v-bind", "vue/valid-v-else", "vue/valid-v-for", "vue/valid-v-if", "vue/valid-v-memo", "vue/valid-v-model", "vue/valid-v-on", "vue/valid-v-show", "vue/valid-v-slot", "vue/warn-custom-block", "vue/warn-custom-directive"];
|
|
592
|
+
declare const LINT_RULE_NAMES: readonly ["a11y/alt-text", "a11y/anchor-has-content", "a11y/anchor-is-valid", "a11y/aria-props", "a11y/aria-role", "a11y/aria-unsupported-elements", "a11y/click-events-have-key-events", "a11y/form-control-has-label", "a11y/heading-has-content", "a11y/heading-levels", "a11y/iframe-has-title", "a11y/img-alt", "a11y/interactive-supports-focus", "a11y/label-has-for", "a11y/landmark-roles", "a11y/media-has-caption", "a11y/mouse-events-have-key-events", "a11y/no-access-key", "a11y/no-aria-hidden-on-focusable", "a11y/no-autofocus", "a11y/no-distracting-elements", "a11y/no-i-for-icon", "a11y/no-redundant-roles", "a11y/no-refer-to-non-existent-id", "a11y/no-role-presentation-on-focusable", "a11y/no-static-element-interactions", "a11y/placeholder-label-option", "a11y/role-has-required-aria-props", "a11y/tabindex-no-positive", "a11y/use-list", "css/no-display-none", "css/no-hardcoded-values", "css/no-id-selectors", "css/no-important", "css/no-utility-classes", "css/no-v-bind-performance", "css/prefer-logical-properties", "css/prefer-nested-selectors", "css/prefer-slotted", "css/require-font-display", "ecosystem/nuxt-prefer-nuxt-link", "ecosystem/pinia-prefer-store-to-refs", "ecosystem/router-link-require-to", "ecosystem/void-link-require-href", "ecosystem/void-link-valid-method", "ecosystem/vue-i18n-no-missing-key", "ecosystem/vue-router-prefer-named-link", "ecosystem/vue-router-prefer-named-push", "ecosystem/vue-test-utils-no-html-snapshot", "html/deprecated-attr", "html/deprecated-element", "html/id-duplication", "html/no-consecutive-br", "html/no-dupe-style-properties", "html/no-duplicate-class", "html/no-duplicate-dt", "html/no-empty-palpable-content", "html/require-datetime", "petite-vue/no-unsupported-directive", "petite-vue/valid-v-effect", "petite-vue/valid-v-scope", "script/component-options-name-casing", "script/define-emits-declaration", "script/define-macros-order", "script/define-props-declaration", "script/define-props-destructuring", "script/no-arrow-functions-in-watch", "script/no-async-in-computed", "script/no-boolean-default", "script/no-deep-destructure-in-props", "script/no-deprecated-data-object-declaration", "script/no-deprecated-dollar-listeners-api", "script/no-deprecated-dollar-scopedslots-api", "script/no-deprecated-events-api", "script/no-deprecated-props-default-this", "script/no-dupe-keys", "script/no-export-in-script-setup", "script/no-get-current-instance", "script/no-import-compiler-macros", "script/no-internal-imports", "script/no-next-tick", "script/no-options-api", "script/no-potential-component-option-typo", "script/no-reactive-destructure", "script/no-required-prop-with-default", "script/no-reserved-identifiers", "script/no-reserved-keys", "script/no-reserved-props", "script/no-side-effects-in-computed-properties", "script/no-top-level-ref-in-script", "script/no-unused-emit-declarations", "script/no-use-computed-property-like-method", "script/no-with-defaults", "script/prefer-computed", "script/prefer-define-options", "script/prefer-import-from-vue", "script/prefer-ref-over-reactive", "script/prefer-use-attrs", "script/prefer-use-id", "script/prefer-use-slots", "script/prefer-use-template-ref", "script/require-default-prop", "script/require-function-return-type", "script/require-prop-type-constructor", "script/require-prop-types", "script/require-symbol-provide", "script/require-typed-ref", "script/return-in-computed-property", "script/return-in-emits-validator", "script/valid-define-options", "script/valid-next-tick", "ssr/no-browser-globals-in-ssr", "ssr/no-hydration-mismatch", "type/no-floating-promises", "type/no-reactivity-loss", "type/no-unsafe-template-binding", "type/require-typed-emits", "type/require-typed-props", "vapor/no-inline-template", "vapor/no-vue-lifecycle-events", "vapor/prefer-static-class", "vapor/require-vapor-attribute", "vue/attribute-hyphenation", "vue/attribute-order", "vue/component-definition-name-casing", "vue/component-name-in-template-casing", "vue/html-button-has-type", "vue/html-quotes", "vue/html-self-closing", "vue/multi-word-component-names", "vue/mustache-interpolation-spacing", "vue/no-boolean-attr-value", "vue/no-child-content", "vue/no-deprecated-html-element-is", "vue/no-deprecated-router-link-tag-prop", "vue/no-deprecated-scope-attribute", "vue/no-deprecated-slot-attribute", "vue/no-deprecated-slot-scope-attribute", "vue/no-deprecated-v-bind-sync", "vue/no-deprecated-v-on-native-modifier", "vue/no-deprecated-v-on-number-modifiers", "vue/no-dupe-v-else-if", "vue/no-duplicate-attributes", "vue/no-empty-component-block", "vue/no-inline-style", "vue/no-lone-template", "vue/no-multi-spaces", "vue/no-multiple-objects-in-class", "vue/no-mutating-props", "vue/no-negated-v-if-condition", "vue/no-preprocessor-lang", "vue/no-reserved-component-names", "vue/no-root-v-if", "vue/no-script-non-standard-lang", "vue/no-src-attribute", "vue/no-template-key", "vue/no-template-lang", "vue/no-template-shadow", "vue/no-template-target-blank", "vue/no-textarea-mustache", "vue/no-unsafe-url", "vue/no-unsandboxed-iframe", "vue/no-unused-components", "vue/no-unused-properties", "vue/no-unused-vars", "vue/no-use-v-if-with-v-for", "vue/no-useless-mustaches", "vue/no-useless-template-attributes", "vue/no-useless-v-bind", "vue/no-v-html", "vue/no-v-text", "vue/no-v-text-v-html-on-component", "vue/permitted-contents", "vue/prefer-props-shorthand", "vue/prefer-true-attribute-shorthand", "vue/prop-name-casing", "vue/require-component-is", "vue/require-component-registration", "vue/require-scoped-style", "vue/require-v-for-key", "vue/scoped-event-names", "vue/sfc-element-order", "vue/single-style-block", "vue/slot-name-casing", "vue/this-in-template", "vue/use-unique-element-ids", "vue/use-v-on-exact", "vue/v-bind-style", "vue/v-on-event-hyphenation", "vue/v-on-handler-style", "vue/v-on-style", "vue/v-slot-style", "vue/valid-attribute-name", "vue/valid-v-bind", "vue/valid-v-cloak", "vue/valid-v-else", "vue/valid-v-for", "vue/valid-v-html", "vue/valid-v-if", "vue/valid-v-memo", "vue/valid-v-model", "vue/valid-v-on", "vue/valid-v-once", "vue/valid-v-show", "vue/valid-v-slot", "vue/valid-v-text", "vue/warn-custom-block", "vue/warn-custom-directive"];
|
|
593
593
|
type LintRuleName = (typeof LINT_RULE_NAMES)[number];
|
|
594
594
|
type LintRulesConfig = Partial<Record<LintRuleName, RuleSeverity>>;
|
|
595
595
|
//#endregion
|
|
@@ -661,4 +661,4 @@ declare function resolveConfigExport(exported: UserConfigExport, env?: ConfigEnv
|
|
|
661
661
|
declare function normalizeGlobalTypes(config: GlobalTypesConfig): Record<string, GlobalTypeDeclaration>;
|
|
662
662
|
//#endregion
|
|
663
663
|
export { RuleSeverity as A, LintPreset as C, MuseaConfig as D, MuseaAutogenConfig as E, VueVersion as F, VitePluginConfig as M, VizeConfig as N, MuseaVrtConfig as O, VizeConfigEntry as P, LanguageServerConfig as S, MuseaA11yConfig as T, CompilerCompatibilityConfig as _, loadConfig as a, GlobalTypeDeclaration as b, LspConfig as c, MaybePromise as d, ResolvedVizeConfig as f, LintRulesConfig as g, LintRuleName as h, defineConfig as i, TypeCheckerConfig as j, RuleCategory as k, ConfigEnv as l, UserConfigInput as m, VIZE_CONFIG_JSON_SCHEMA_PATH as n, normalizeGlobalTypes as o, UserConfigExport as p, VIZE_CONFIG_PKL_SCHEMA_PATH as r, resolveConfigExport as s, CONFIG_FILE_NAMES as t, LoadConfigOptions as u, CompilerConfig as v, LinterConfig as w, GlobalTypesConfig as x, FormatterConfig as y };
|
|
664
|
-
//# sourceMappingURL=config-
|
|
664
|
+
//# sourceMappingURL=config-DthdNYvv.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"config-DthdNYvv.d.mts","names":[],"sources":["../src/types/generated.ts","../src/types/rules.ts","../src/types/runtime.ts","../src/types/index.ts","../src/config.ts"],"mappings":"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"}
|
package/dist/config.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as loadConfig, i as defineConfig, n as VIZE_CONFIG_JSON_SCHEMA_PATH, o as normalizeGlobalTypes, r as VIZE_CONFIG_PKL_SCHEMA_PATH, s as resolveConfigExport, t as CONFIG_FILE_NAMES } from "./config-
|
|
1
|
+
import { a as loadConfig, i as defineConfig, n as VIZE_CONFIG_JSON_SCHEMA_PATH, o as normalizeGlobalTypes, r as VIZE_CONFIG_PKL_SCHEMA_PATH, s as resolveConfigExport, t as CONFIG_FILE_NAMES } from "./config-DthdNYvv.mjs";
|
|
2
2
|
export { CONFIG_FILE_NAMES, VIZE_CONFIG_JSON_SCHEMA_PATH, VIZE_CONFIG_PKL_SCHEMA_PATH, defineConfig, loadConfig, normalizeGlobalTypes, resolveConfigExport };
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { A as RuleSeverity, C as LintPreset, D as MuseaConfig, E as MuseaAutogenConfig, F as VueVersion, M as VitePluginConfig, N as VizeConfig, O as MuseaVrtConfig, P as VizeConfigEntry, S as LanguageServerConfig, T as MuseaA11yConfig, _ as CompilerCompatibilityConfig, a as loadConfig, b as GlobalTypeDeclaration, c as LspConfig, d as MaybePromise, f as ResolvedVizeConfig, g as LintRulesConfig, h as LintRuleName, i as defineConfig, j as TypeCheckerConfig, k as RuleCategory, l as ConfigEnv, m as UserConfigInput, n as VIZE_CONFIG_JSON_SCHEMA_PATH, o as normalizeGlobalTypes, p as UserConfigExport, r as VIZE_CONFIG_PKL_SCHEMA_PATH, s as resolveConfigExport, t as CONFIG_FILE_NAMES, u as LoadConfigOptions, v as CompilerConfig, w as LinterConfig, x as GlobalTypesConfig, y as FormatterConfig } from "./config-
|
|
1
|
+
import { A as RuleSeverity, C as LintPreset, D as MuseaConfig, E as MuseaAutogenConfig, F as VueVersion, M as VitePluginConfig, N as VizeConfig, O as MuseaVrtConfig, P as VizeConfigEntry, S as LanguageServerConfig, T as MuseaA11yConfig, _ as CompilerCompatibilityConfig, a as loadConfig, b as GlobalTypeDeclaration, c as LspConfig, d as MaybePromise, f as ResolvedVizeConfig, g as LintRulesConfig, h as LintRuleName, i as defineConfig, j as TypeCheckerConfig, k as RuleCategory, l as ConfigEnv, m as UserConfigInput, n as VIZE_CONFIG_JSON_SCHEMA_PATH, o as normalizeGlobalTypes, p as UserConfigExport, r as VIZE_CONFIG_PKL_SCHEMA_PATH, s as resolveConfigExport, t as CONFIG_FILE_NAMES, u as LoadConfigOptions, v as CompilerConfig, w as LinterConfig, x as GlobalTypesConfig, y as FormatterConfig } from "./config-DthdNYvv.mjs";
|
|
2
2
|
export { CONFIG_FILE_NAMES, type CompilerCompatibilityConfig, type CompilerConfig, type ConfigEnv, type FormatterConfig, type GlobalTypeDeclaration, type GlobalTypesConfig, type LanguageServerConfig, type LintPreset, type LintRuleName, type LintRulesConfig, type LinterConfig, type LoadConfigOptions, type LspConfig, type MaybePromise, type MuseaA11yConfig, type MuseaAutogenConfig, type MuseaConfig, type MuseaVrtConfig, type ResolvedVizeConfig, type RuleCategory, type RuleSeverity, type TypeCheckerConfig, type UserConfigExport, type UserConfigInput, VIZE_CONFIG_JSON_SCHEMA_PATH, VIZE_CONFIG_PKL_SCHEMA_PATH, type VitePluginConfig, type VizeConfig, type VizeConfigEntry, type VueVersion, defineConfig, loadConfig, normalizeGlobalTypes, resolveConfigExport };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vize",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.213.0",
|
|
4
4
|
"description": "Vize - High-performance Vue.js toolchain in Rust",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@vizejs/native": "0.
|
|
53
|
+
"@vizejs/native": "0.213.0",
|
|
54
54
|
"oxc-transform": "0.130.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
@@ -181,19 +181,19 @@
|
|
|
181
181
|
"additionalProperties": false
|
|
182
182
|
},
|
|
183
183
|
"LinterConfig": {
|
|
184
|
-
"description": "Linter options",
|
|
185
184
|
"type": "object",
|
|
186
185
|
"properties": {
|
|
187
186
|
"enabled": {
|
|
188
|
-
"description": "Enable linting",
|
|
189
187
|
"type": "boolean"
|
|
190
188
|
},
|
|
191
189
|
"preset": {
|
|
192
|
-
"description": "Built-in lint preset",
|
|
193
190
|
"default": "ecosystem",
|
|
194
191
|
"type": "string",
|
|
195
192
|
"enum": ["happy-path", "opinionated", "essential", "incremental", "ecosystem", "nuxt"]
|
|
196
193
|
},
|
|
194
|
+
"typeAware": {
|
|
195
|
+
"type": "boolean"
|
|
196
|
+
},
|
|
197
197
|
"rules": {
|
|
198
198
|
"description": "Rules to enable/disable",
|
|
199
199
|
"type": "object",
|
package/src/types/generated.ts
CHANGED
|
@@ -177,10 +177,10 @@ export interface LinterConfig {
|
|
|
177
177
|
* Enable linting
|
|
178
178
|
*/
|
|
179
179
|
enabled?: boolean;
|
|
180
|
-
/**
|
|
181
|
-
* Built-in lint preset
|
|
182
|
-
*/
|
|
180
|
+
/** Built-in lint preset */
|
|
183
181
|
preset?: "happy-path" | "opinionated" | "essential" | "incremental" | "ecosystem" | "nuxt";
|
|
182
|
+
/** Enable native type-aware lint rules from the active lint configuration */
|
|
183
|
+
typeAware?: boolean;
|
|
184
184
|
/**
|
|
185
185
|
* Rules to enable/disable
|
|
186
186
|
*/
|
package/src/types/rules.ts
CHANGED
|
@@ -57,34 +57,64 @@ export const LINT_RULE_NAMES = [
|
|
|
57
57
|
"html/deprecated-element",
|
|
58
58
|
"html/id-duplication",
|
|
59
59
|
"html/no-consecutive-br",
|
|
60
|
+
"html/no-dupe-style-properties",
|
|
61
|
+
"html/no-duplicate-class",
|
|
60
62
|
"html/no-duplicate-dt",
|
|
61
63
|
"html/no-empty-palpable-content",
|
|
62
64
|
"html/require-datetime",
|
|
63
65
|
"petite-vue/no-unsupported-directive",
|
|
64
66
|
"petite-vue/valid-v-effect",
|
|
65
67
|
"petite-vue/valid-v-scope",
|
|
68
|
+
"script/component-options-name-casing",
|
|
69
|
+
"script/define-emits-declaration",
|
|
70
|
+
"script/define-macros-order",
|
|
71
|
+
"script/define-props-declaration",
|
|
72
|
+
"script/define-props-destructuring",
|
|
73
|
+
"script/no-arrow-functions-in-watch",
|
|
66
74
|
"script/no-async-in-computed",
|
|
75
|
+
"script/no-boolean-default",
|
|
67
76
|
"script/no-deep-destructure-in-props",
|
|
77
|
+
"script/no-deprecated-data-object-declaration",
|
|
78
|
+
"script/no-deprecated-dollar-listeners-api",
|
|
79
|
+
"script/no-deprecated-dollar-scopedslots-api",
|
|
80
|
+
"script/no-deprecated-events-api",
|
|
81
|
+
"script/no-deprecated-props-default-this",
|
|
68
82
|
"script/no-dupe-keys",
|
|
83
|
+
"script/no-export-in-script-setup",
|
|
69
84
|
"script/no-get-current-instance",
|
|
70
85
|
"script/no-import-compiler-macros",
|
|
71
86
|
"script/no-internal-imports",
|
|
72
87
|
"script/no-next-tick",
|
|
73
88
|
"script/no-options-api",
|
|
89
|
+
"script/no-potential-component-option-typo",
|
|
74
90
|
"script/no-reactive-destructure",
|
|
91
|
+
"script/no-required-prop-with-default",
|
|
75
92
|
"script/no-reserved-identifiers",
|
|
93
|
+
"script/no-reserved-keys",
|
|
94
|
+
"script/no-reserved-props",
|
|
76
95
|
"script/no-side-effects-in-computed-properties",
|
|
77
96
|
"script/no-top-level-ref-in-script",
|
|
97
|
+
"script/no-unused-emit-declarations",
|
|
98
|
+
"script/no-use-computed-property-like-method",
|
|
78
99
|
"script/no-with-defaults",
|
|
79
100
|
"script/prefer-computed",
|
|
101
|
+
"script/prefer-define-options",
|
|
80
102
|
"script/prefer-import-from-vue",
|
|
81
103
|
"script/prefer-ref-over-reactive",
|
|
82
104
|
"script/prefer-use-attrs",
|
|
83
105
|
"script/prefer-use-id",
|
|
84
106
|
"script/prefer-use-slots",
|
|
85
107
|
"script/prefer-use-template-ref",
|
|
108
|
+
"script/require-default-prop",
|
|
86
109
|
"script/require-function-return-type",
|
|
110
|
+
"script/require-prop-type-constructor",
|
|
111
|
+
"script/require-prop-types",
|
|
87
112
|
"script/require-symbol-provide",
|
|
113
|
+
"script/require-typed-ref",
|
|
114
|
+
"script/return-in-computed-property",
|
|
115
|
+
"script/return-in-emits-validator",
|
|
116
|
+
"script/valid-define-options",
|
|
117
|
+
"script/valid-next-tick",
|
|
88
118
|
"ssr/no-browser-globals-in-ssr",
|
|
89
119
|
"ssr/no-hydration-mismatch",
|
|
90
120
|
"type/no-floating-promises",
|
|
@@ -100,38 +130,55 @@ export const LINT_RULE_NAMES = [
|
|
|
100
130
|
"vue/attribute-order",
|
|
101
131
|
"vue/component-definition-name-casing",
|
|
102
132
|
"vue/component-name-in-template-casing",
|
|
133
|
+
"vue/html-button-has-type",
|
|
103
134
|
"vue/html-quotes",
|
|
104
135
|
"vue/html-self-closing",
|
|
105
136
|
"vue/multi-word-component-names",
|
|
106
137
|
"vue/mustache-interpolation-spacing",
|
|
107
138
|
"vue/no-boolean-attr-value",
|
|
108
139
|
"vue/no-child-content",
|
|
140
|
+
"vue/no-deprecated-html-element-is",
|
|
141
|
+
"vue/no-deprecated-router-link-tag-prop",
|
|
142
|
+
"vue/no-deprecated-scope-attribute",
|
|
143
|
+
"vue/no-deprecated-slot-attribute",
|
|
144
|
+
"vue/no-deprecated-slot-scope-attribute",
|
|
109
145
|
"vue/no-deprecated-v-bind-sync",
|
|
110
146
|
"vue/no-deprecated-v-on-native-modifier",
|
|
147
|
+
"vue/no-deprecated-v-on-number-modifiers",
|
|
111
148
|
"vue/no-dupe-v-else-if",
|
|
112
149
|
"vue/no-duplicate-attributes",
|
|
150
|
+
"vue/no-empty-component-block",
|
|
113
151
|
"vue/no-inline-style",
|
|
114
152
|
"vue/no-lone-template",
|
|
115
153
|
"vue/no-multi-spaces",
|
|
154
|
+
"vue/no-multiple-objects-in-class",
|
|
116
155
|
"vue/no-mutating-props",
|
|
156
|
+
"vue/no-negated-v-if-condition",
|
|
117
157
|
"vue/no-preprocessor-lang",
|
|
118
158
|
"vue/no-reserved-component-names",
|
|
159
|
+
"vue/no-root-v-if",
|
|
119
160
|
"vue/no-script-non-standard-lang",
|
|
120
161
|
"vue/no-src-attribute",
|
|
121
162
|
"vue/no-template-key",
|
|
122
163
|
"vue/no-template-lang",
|
|
123
164
|
"vue/no-template-shadow",
|
|
165
|
+
"vue/no-template-target-blank",
|
|
124
166
|
"vue/no-textarea-mustache",
|
|
125
167
|
"vue/no-unsafe-url",
|
|
168
|
+
"vue/no-unsandboxed-iframe",
|
|
126
169
|
"vue/no-unused-components",
|
|
127
170
|
"vue/no-unused-properties",
|
|
128
171
|
"vue/no-unused-vars",
|
|
129
172
|
"vue/no-use-v-if-with-v-for",
|
|
173
|
+
"vue/no-useless-mustaches",
|
|
130
174
|
"vue/no-useless-template-attributes",
|
|
175
|
+
"vue/no-useless-v-bind",
|
|
131
176
|
"vue/no-v-html",
|
|
177
|
+
"vue/no-v-text",
|
|
132
178
|
"vue/no-v-text-v-html-on-component",
|
|
133
179
|
"vue/permitted-contents",
|
|
134
180
|
"vue/prefer-props-shorthand",
|
|
181
|
+
"vue/prefer-true-attribute-shorthand",
|
|
135
182
|
"vue/prop-name-casing",
|
|
136
183
|
"vue/require-component-is",
|
|
137
184
|
"vue/require-component-registration",
|
|
@@ -140,21 +187,29 @@ export const LINT_RULE_NAMES = [
|
|
|
140
187
|
"vue/scoped-event-names",
|
|
141
188
|
"vue/sfc-element-order",
|
|
142
189
|
"vue/single-style-block",
|
|
190
|
+
"vue/slot-name-casing",
|
|
191
|
+
"vue/this-in-template",
|
|
143
192
|
"vue/use-unique-element-ids",
|
|
144
193
|
"vue/use-v-on-exact",
|
|
145
194
|
"vue/v-bind-style",
|
|
195
|
+
"vue/v-on-event-hyphenation",
|
|
196
|
+
"vue/v-on-handler-style",
|
|
146
197
|
"vue/v-on-style",
|
|
147
198
|
"vue/v-slot-style",
|
|
148
199
|
"vue/valid-attribute-name",
|
|
149
200
|
"vue/valid-v-bind",
|
|
201
|
+
"vue/valid-v-cloak",
|
|
150
202
|
"vue/valid-v-else",
|
|
151
203
|
"vue/valid-v-for",
|
|
204
|
+
"vue/valid-v-html",
|
|
152
205
|
"vue/valid-v-if",
|
|
153
206
|
"vue/valid-v-memo",
|
|
154
207
|
"vue/valid-v-model",
|
|
155
208
|
"vue/valid-v-on",
|
|
209
|
+
"vue/valid-v-once",
|
|
156
210
|
"vue/valid-v-show",
|
|
157
211
|
"vue/valid-v-slot",
|
|
212
|
+
"vue/valid-v-text",
|
|
158
213
|
"vue/warn-custom-block",
|
|
159
214
|
"vue/warn-custom-directive",
|
|
160
215
|
] as const;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"config-C0bU5U2Z.d.mts","names":[],"sources":["../src/types/generated.ts","../src/types/rules.ts","../src/types/runtime.ts","../src/types/index.ts","../src/config.ts"],"mappings":"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"}
|