Skip to content

Commit 10c8d4b

Browse files
authored
fix: correct svelte/html-closing-bracket-new-line docs (#915)
Correcting: - [Comment 1](#870 (comment)) - [Comment 2](#870 (comment)) Thanks to @noy4 for pointing the issues out.
1 parent fd8b46b commit 10c8d4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/rules/html-closing-bracket-new-line.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This rule enforces a line break (or no line break) before tag's closing brackets
2323

2424
```svelte
2525
<script>
26-
/* eslint svelte/brackets-same-line: "error" */
26+
/* eslint svelte/html-closing-bracket-new-line: "error" */
2727
</script>
2828
2929
<!-- ✓ GOOD -->
@@ -60,9 +60,9 @@ This rule enforces a line break (or no line break) before tag's closing brackets
6060

6161
## :wrench: Options
6262

63-
```jsonc
63+
```json
6464
{
65-
"svelte/brackets-same-line": [
65+
"svelte/html-closing-bracket-new-line": [
6666
"error",
6767
{
6868
"singleline": "never", // ["never", "always"]

0 commit comments

Comments
 (0)