Skip to content

Commit 1a31fe8

Browse files
committed
Update README and docs
1 parent f028b57 commit 1a31fe8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,6 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
151151
| | [vue/no-template-key](./docs/rules/no-template-key.md) | disallow `key` attribute on `<template>` |
152152
| | [vue/no-textarea-mustache](./docs/rules/no-textarea-mustache.md) | disallow mustaches in `<textarea>` |
153153
| | [vue/no-unused-vars](./docs/rules/no-unused-vars.md) | disallow unused variable definitions of v-for directives or scope attributes |
154-
| | [vue/no-use-v-if-with-v-for](./docs/rules/no-use-v-if-with-v-for.md) | disallow use v-if on the same element as v-for. |
155154
| | [vue/require-component-is](./docs/rules/require-component-is.md) | require `v-bind:is` of `<component>` elements |
156155
| | [vue/require-render-return](./docs/rules/require-render-return.md) | enforce render function to always return value |
157156
| | [vue/require-v-for-key](./docs/rules/require-v-for-key.md) | require `v-bind:key` with `v-for` directives |
@@ -184,7 +183,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
184183

185184
| | Rule ID | Description |
186185
|:---|:--------|:------------|
187-
| :wrench: | [vue/attribute-hyphenation](./docs/rules/attribute-hyphenation.md) | enforce attribute naming style in template |
186+
| :wrench: | [vue/attribute-hyphenation](./docs/rules/attribute-hyphenation.md) | enforce attribute naming style on custom components in template |
188187
| :wrench: | [vue/html-end-tags](./docs/rules/html-end-tags.md) | enforce end tag style |
189188
| :wrench: | [vue/html-indent](./docs/rules/html-indent.md) | enforce consistent indentation in `<template>` |
190189
| :wrench: | [vue/html-self-closing](./docs/rules/html-self-closing.md) | enforce self-closing style |
@@ -221,6 +220,7 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
221220
|:---|:--------|:------------|
222221
| :wrench: | [vue/html-closing-bracket-newline](./docs/rules/html-closing-bracket-newline.md) | require or disallow a line break before tag's closing brackets |
223222
| :wrench: | [vue/html-closing-bracket-spacing](./docs/rules/html-closing-bracket-spacing.md) | require or disallow a space before tag's closing brackets |
223+
| | [vue/no-use-v-if-with-v-for](./docs/rules/no-use-v-if-with-v-for.md) | disallow use v-if on the same element as v-for |
224224
| :wrench: | [vue/prop-name-casing](./docs/rules/prop-name-casing.md) | enforce specific casing for the Prop name in Vue components |
225225
| :wrench: | [vue/script-indent](./docs/rules/script-indent.md) | enforce consistent indentation in `<script>` |
226226

Diff for: docs/rules/no-use-v-if-with-v-for.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# disallow use v-if on the same element as v-for. (vue/no-use-v-if-with-v-for)
1+
# disallow use v-if on the same element as v-for (vue/no-use-v-if-with-v-for)
22

33
> Never use `v-if` on the same element as `v-for`.
44
>

0 commit comments

Comments
 (0)