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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -353,7 +353,7 @@ For example:
353
353
|[vue/no-v-text](./no-v-text.md)| disallow use of v-text ||
354
354
|[vue/padding-line-between-blocks](./padding-line-between-blocks.md)| require or disallow padding lines between blocks |:wrench:|
355
355
|[vue/prefer-separate-static-class](./prefer-separate-static-class.md)| require static class names in template to be in a separate `class` attribute |:wrench:|
356
-
|[vue/prefer-true-attribute-shorthand](./prefer-true-attribute-shorthand.md)| require shorthand form attribute when `v-bind` value is `true`|:wrench::bulb:|
356
+
|[vue/prefer-true-attribute-shorthand](./prefer-true-attribute-shorthand.md)| require shorthand form attribute when `v-bind` value is `true`|:bulb:|
357
357
|[vue/require-direct-export](./require-direct-export.md)| require the component to be directly exported ||
358
358
|[vue/require-emit-validator](./require-emit-validator.md)| require type definitions in emits |:bulb:|
359
359
|[vue/require-expose](./require-expose.md)| require declare public properties using `expose`|:bulb:|
Copy file name to clipboardExpand all lines: docs/rules/prefer-true-attribute-shorthand.md
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -9,14 +9,13 @@ description: require shorthand form attribute when `v-bind` value is `true`
9
9
> require shorthand form attribute when `v-bind` value is `true`
10
10
11
11
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> ***This rule has not been released yet.*** </badge>
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
12
-:bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
14
13
15
14
## :book: Rule Details
16
15
17
16
`v-bind` attribute with `true` value usually can be written in shorthand form. This can reduce verbosity.
0 commit comments