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/index.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ Rules in this category are enabled for all presets provided by eslint-plugin-vue
62
62
|[vue/no-deprecated-slot-attribute](./no-deprecated-slot-attribute.md)| disallow deprecated `slot` attribute (in Vue.js 2.6.0+) |:wrench:|:three::hammer:|
63
63
|[vue/no-deprecated-slot-scope-attribute](./no-deprecated-slot-scope-attribute.md)| disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+) |:wrench:|:three::hammer:|
64
64
|[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:|:three::warning:|
65
-
|[vue/no-deprecated-v-is](./no-deprecated-v-is.md)| disallow deprecated `v-is` directive (in Vue.js 3.1.0+) |:wrench:|:three::hammer:|
65
+
|[vue/no-deprecated-v-is](./no-deprecated-v-is.md)| disallow deprecated `v-is` directive (in Vue.js 3.1.0+) ||:three::hammer:|
66
66
|[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+) ||:three::warning:|
67
67
|[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:|:three::warning:|
68
68
|[vue/no-deprecated-vue-config-keycodes](./no-deprecated-vue-config-keycodes.md)| disallow using deprecated `Vue.config.keyCodes` (in Vue.js 3.0.0+) ||:three::warning:|
@@ -225,7 +225,7 @@ For example:
225
225
|[vue/new-line-between-multi-line-property](./new-line-between-multi-line-property.md)| enforce new lines between multi-line properties in Vue components |:wrench:|:lipstick:|
226
226
|[vue/next-tick-style](./next-tick-style.md)| enforce Promise or callback style in `nextTick`|:wrench:|:hammer:|
227
227
|[vue/no-bare-strings-in-template](./no-bare-strings-in-template.md)| disallow the use of bare strings in `<template>`||:hammer:|
|[vue/no-deprecated-model-definition](./no-deprecated-model-definition.md)| disallow deprecated `model` definition (in Vue.js 3.0.0+) |:bulb:|:warning:|
230
230
|[vue/no-duplicate-attr-inheritance](./no-duplicate-attr-inheritance.md)| enforce `inheritAttrs` to be set to `false` when using `v-bind="$attrs"`||:hammer:|
231
231
|[vue/no-empty-component-block](./no-empty-component-block.md)| disallow the `<template>``<script>``<style>` block to be empty ||:hammer:|
Copy file name to clipboardExpand all lines: docs/rules/no-boolean-default.md
+1-3
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,13 @@ since: v7.0.0
9
9
10
10
> disallow boolean defaults
11
11
12
-
-: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.
13
-
14
12
The rule prevents Boolean props from having a default value.
15
13
16
14
## :book: Rule Details
17
15
18
16
The rule is to enforce the HTML standard of always defaulting boolean attributes to false.
Copy file name to clipboardExpand all lines: docs/rules/no-deprecated-v-is.md
+1-2
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,14 @@ since: v7.11.0
10
10
> disallow deprecated `v-is` directive (in Vue.js 3.1.0+)
11
11
12
12
-:gear: This rule is included in all of `"plugin:vue/vue3-essential"`, `"plugin:vue/vue3-strongly-recommended"` and `"plugin:vue/vue3-recommended"`.
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.
14
13
15
14
## :book: Rule Details
16
15
17
16
This rule reports deprecated `v-is` directive in Vue.js v3.1.0+.
18
17
19
18
Use [`is` attribute with `vue:` prefix](https://vuejs.org/api/built-in-special-attributes.html#is) instead.
0 commit comments