We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66e17c2 commit a69787fCopy full SHA for a69787f
tests/fixtures/rules/no-unused-class-name/valid/invalid-style01-input.svelte
@@ -0,0 +1,18 @@
1
+<div class="container">
2
+ <div class="div-class">Hello</div>
3
+
4
+ <span class="span-class">World!</span>
5
+</div>
6
7
+<style>
8
+ // This syntax is intentionally invalid CSS - this is to be used to test resiliency against invalid input
9
+ .container {
10
+ class .div-class/35
11
+ # Weird comment
12
+ color: red;
13
14
+ .span-class begin
15
+ font-weight: bold;
16
+ end
17
+ }
18
+</style>
0 commit comments