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: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -440,7 +440,7 @@ These rules relate to style guidelines, and are therefore quite subjective:
440
440
|:--------|:------------|:---|
441
441
|[svelte/derived-has-same-inputs-outputs](https://sveltejs.github.io/eslint-plugin-svelte/rules/derived-has-same-inputs-outputs/)| derived store should use same variable names between values and callback ||
442
442
|[svelte/first-attribute-linebreak](https://sveltejs.github.io/eslint-plugin-svelte/rules/first-attribute-linebreak/)| enforce the location of first attribute |:wrench:|
443
-
|[svelte/html-closing-bracket-new-line](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-new-line/)|require or disallow a line break before tag's closing brackets |:wrench:|
443
+
|[svelte/html-closing-bracket-new-line](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-new-line/)|Require or disallow a line break before tag's closing brackets |:wrench:|
444
444
|[svelte/html-closing-bracket-spacing](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-closing-bracket-spacing/)| require or disallow a space before tag's closing brackets |:wrench:|
445
445
|[svelte/html-quotes](https://sveltejs.github.io/eslint-plugin-svelte/rules/html-quotes/)| enforce quotes style of HTML attributes |:wrench:|
|[svelte/derived-has-same-inputs-outputs](./rules/derived-has-same-inputs-outputs.md)| derived store should use same variable names between values and callback ||
79
79
|[svelte/first-attribute-linebreak](./rules/first-attribute-linebreak.md)| enforce the location of first attribute |:wrench:|
80
-
|[svelte/html-closing-bracket-new-line](./rules/html-closing-bracket-new-line.md)|require or disallow a line break before tag's closing brackets |:wrench:|
80
+
|[svelte/html-closing-bracket-new-line](./rules/html-closing-bracket-new-line.md)|Require or disallow a line break before tag's closing brackets |:wrench:|
81
81
|[svelte/html-closing-bracket-spacing](./rules/html-closing-bracket-spacing.md)| require or disallow a space before tag's closing brackets |:wrench:|
82
82
|[svelte/html-quotes](./rules/html-quotes.md)| enforce quotes style of HTML attributes |:wrench:|
Copy file name to clipboardExpand all lines: docs/rules/html-closing-bracket-new-line.md
+13-10
Original file line number
Diff line number
Diff line change
@@ -2,12 +2,12 @@
2
2
pageClass: 'rule-details'
3
3
sidebarDepth: 0
4
4
title: 'svelte/html-closing-bracket-new-line'
5
-
description: "require or disallow a line break before tag's closing brackets"
5
+
description: "Require or disallow a line break before tag's closing brackets"
6
6
---
7
7
8
8
# svelte/html-closing-bracket-new-line
9
9
10
-
> require or disallow a line break before tag's closing brackets
10
+
> Require or disallow a line break before tag's closing brackets
11
11
12
12
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> **_This rule has not been released yet._** </badge>
13
13
-: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.
@@ -42,15 +42,15 @@ This rule enforces a line break (or no line break) before tag's closing brackets
42
42
43
43
<div
44
44
></div>
45
-
<div
45
+
<div
46
46
multiline>
47
47
Children
48
48
</div>
49
49
50
50
<SelfClosing
51
51
/>
52
52
<SelfClosing
53
-
multiline/>
53
+
multiline/>
54
54
```
55
55
56
56
</ESLintCodeBlock>
@@ -59,14 +59,17 @@ This rule enforces a line break (or no line break) before tag's closing brackets
0 commit comments