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
@@ -56,8 +41,14 @@ This rule enforces a consistent indentation style in `<template>`. The default s
56
41
displayMessage
57
42
}}
58
43
</div>
44
+
45
+
<!-- ✗ BAD -->
46
+
<div class="foo">
47
+
Hello.
48
+
</div>
59
49
</template>
60
50
```
51
+
</eslint-code-block>
61
52
62
53
## :wrench: Options
63
54
@@ -78,10 +69,12 @@ This rule enforces a consistent indentation style in `<template>`. The default s
78
69
-`alignAttributesVertically` (`boolean`) ... Condition for whether attributes should be vertically aligned to the first attribute in multiline case or not. Default is `true`
79
70
-`ignores` (`string[]`) ... The selector to ignore nodes. The AST spec is [here](https://github.com/mysticatea/vue-eslint-parser/blob/master/docs/ast.md). You can use [esquery](https://github.com/estools/esquery#readme) to select nodes. Default is an empty array.
80
71
81
-
:+1: Examples of **correct** code for `{attribute: 1, closeBracket: 1}`:
0 commit comments