You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/rules/README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -55,12 +55,14 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
55
55
|[vue/no-deprecated-slot-attribute](./no-deprecated-slot-attribute.md)| disallow deprecated `slot` attribute (in Vue.js 2.6.0+) |:wrench:|
56
56
|[vue/no-deprecated-slot-scope-attribute](./no-deprecated-slot-scope-attribute.md)| disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+) |:wrench:|
57
57
|[vue/no-deprecated-v-bind-sync](./no-deprecated-v-bind-sync.md)| disallow use of deprecated `.sync` modifier on `v-bind` directive (in Vue.js 3.0.0+) |:wrench:|
58
+
|[vue/no-deprecated-v-is](./no-deprecated-v-is.md)| disallow deprecated `v-is` directive (in Vue.js 3.1.0+) |:wrench:|
58
59
|[vue/no-deprecated-v-on-native-modifier](./no-deprecated-v-on-native-modifier.md)| disallow using deprecated `.native` modifiers (in Vue.js 3.0.0+) ||
59
60
|[vue/no-deprecated-v-on-number-modifiers](./no-deprecated-v-on-number-modifiers.md)| disallow using deprecated number (keycode) modifiers (in Vue.js 3.0.0+) |:wrench:|
60
61
|[vue/no-deprecated-vue-config-keycodes](./no-deprecated-vue-config-keycodes.md)| disallow using deprecated `Vue.config.keyCodes` (in Vue.js 3.0.0+) ||
61
62
|[vue/no-dupe-keys](./no-dupe-keys.md)| disallow duplication of field names ||
62
63
|[vue/no-dupe-v-else-if](./no-dupe-v-else-if.md)| disallow duplicate conditions in `v-if` / `v-else-if` chains ||
63
64
|[vue/no-duplicate-attributes](./no-duplicate-attributes.md)| disallow duplication of attributes ||
65
+
|[vue/no-export-in-script-setup](./no-export-in-script-setup.md)| disallow `export` in `<script setup>`||
@@ -136,6 +141,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
136
141
|[vue/require-prop-types](./require-prop-types.md)| require type definitions in props ||
137
142
|[vue/singleline-html-element-content-newline](./singleline-html-element-content-newline.md)| require a line break before and after the contents of a singleline element |:wrench:|
Copy file name to clipboardExpand all lines: docs/rules/no-deprecated-v-is.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ since: v7.11.0
9
9
10
10
> disallow deprecated `v-is` directive (in Vue.js 3.1.0+)
11
11
12
+
-:gear: This rule is included in all of `"plugin:vue/vue3-essential"`, `"plugin:vue/vue3-strongly-recommended"` and `"plugin:vue/vue3-recommended"`.
12
13
-:wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
Copy file name to clipboardExpand all lines: docs/rules/v-on-event-hyphenation.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ since: v7.4.0
9
9
10
10
> enforce v-on event naming style on custom components in template
11
11
12
+
-:gear: This rule is included in `"plugin:vue/vue3-strongly-recommended"` and `"plugin:vue/vue3-recommended"`.
12
13
-:wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
0 commit comments