Skip to content

Commit b34b24f

Browse files
anteriovieiramichalsnik
authored andcommitted
Fix typo (#424)
1 parent 6bb6f69 commit b34b24f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/rules/attributes-order.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Specify custom order of attribute groups
8686
:+1: Examples of **correct** code with custom order`:
8787

8888
```html
89-
<!-- 'vue/attribute-order': [2, { order: ['LIST_RENDERING', 'CONDITIONALS', 'RENDER_MODIFIERS', 'GLOBAL', 'UNIQUE', 'BINDING', 'OTHER_ATTR', 'EVENTS', 'CONTENT', 'DEFINITION'] }] -->
89+
<!-- 'vue/attributes-order': [2, { order: ['LIST_RENDERING', 'CONDITIONALS', 'RENDER_MODIFIERS', 'GLOBAL', 'UNIQUE', 'BINDING', 'OTHER_ATTR', 'EVENTS', 'CONTENT', 'DEFINITION'] }] -->
9090
<div
9191
propOne="prop"
9292
propTwo="prop"
@@ -95,7 +95,7 @@ Specify custom order of attribute groups
9595
```
9696

9797
```html
98-
<!-- 'vue/attribute-order': [2, { order: ['LIST_RENDERING', 'CONDITIONALS', 'RENDER_MODIFIERS', 'GLOBAL', 'UNIQUE', 'BINDING', 'DEFINITION', 'OTHER_ATTR', 'EVENTS', 'CONTENT'] }] -->
98+
<!-- 'vue/attributes-order': [2, { order: ['LIST_RENDERING', 'CONDITIONALS', 'RENDER_MODIFIERS', 'GLOBAL', 'UNIQUE', 'BINDING', 'DEFINITION', 'OTHER_ATTR', 'EVENTS', 'CONTENT'] }] -->
9999
<div
100100
ref="header"
101101
is="header"
@@ -107,7 +107,7 @@ Specify custom order of attribute groups
107107
:-1: Examples of **incorrect** code with custom order`:
108108

109109
```html
110-
<!-- 'vue/attribute-order': [2, { order: ['LIST_RENDERING', 'CONDITIONALS', 'RENDER_MODIFIERS', 'GLOBAL', 'UNIQUE', 'BINDING', 'DEFINITION', 'OTHER_ATTR', 'EVENTS', 'CONTENT'] }] -->
110+
<!-- 'vue/attributes-order': [2, { order: ['LIST_RENDERING', 'CONDITIONALS', 'RENDER_MODIFIERS', 'GLOBAL', 'UNIQUE', 'BINDING', 'DEFINITION', 'OTHER_ATTR', 'EVENTS', 'CONTENT'] }] -->
111111
<div
112112
ref="header"
113113
propOne="prop"

0 commit comments

Comments
 (0)