Skip to content

Commit 3a763f3

Browse files
committed
test
1 parent b1b6f09 commit 3a763f3

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/eslint-plugin-svelte/tests/fixtures/rules/html-self-closing/invalid/presets/html/preset-html-errors.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
line: 6
1515
column: 13
1616
suggestions: null
17+
- message: Disallow self-closing on MathML elements.
18+
line: 7
19+
column: 14
20+
suggestions: null
1721
- message: Require self-closing on Svelte special elements.
1822
line: 10
1923
column: 13

packages/eslint-plugin-svelte/tests/fixtures/rules/html-self-closing/invalid/presets/html/preset-html-input.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<img>
55
<TestComponent />
66
<svg><path></path></svg>
7-
<math><msup></msup></math>
7+
<math><msup/></math>
88
</div>
99
<!-- prettier-ignore -->
1010
<svelte:head></svelte:head>

0 commit comments

Comments
 (0)