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
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,6 @@ sidebarDepth: 0
12
12
:bulb: Indicates that some problems reported by the rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
13
13
:::
14
14
15
-
16
15
## Base Rules (Enabling Correct ESLint Parsing)
17
16
18
17
Enforce all the rules in this category, as well as all higher priority rules, with:
Copy file name to clipboardExpand all lines: docs/rules/html-closing-bracket-newline.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,11 +66,11 @@ This rule aims to warn the right angle brackets which are at the location other
66
66
```
67
67
68
68
-`singleline` ... the configuration for single-line elements. It's a single-line element if the element does not have attributes or the last attribute is on the same line as the opening bracket.
69
-
-`"never"` (default) ... disallow line breaks before the closing bracket.
70
-
-`"always"` ... require one line break before the closing bracket.
69
+
-`"never"` (default) ... disallow line breaks before the closing bracket.
70
+
-`"always"` ... require one line break before the closing bracket.
71
71
-`multiline` ... the configuration for multiline elements. It's a multiline element if the last attribute is not on the same line of the opening bracket.
72
-
-`"never"` ... disallow line breaks before the closing bracket.
73
-
-`"always"` (default) ... require one line break before the closing bracket.
72
+
-`"never"` ... disallow line breaks before the closing bracket.
73
+
-`"always"` (default) ... require one line break before the closing bracket.
74
74
75
75
Plus, you can use [`vue/html-indent`](./html-indent.md) rule to enforce indent-level of the closing brackets.
0 commit comments