Skip to content

Commit e896d7a

Browse files
committed
Fix lint issues
1 parent 125964c commit e896d7a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"options": [{ "prefer": "always" }]
2+
"options": [{ "prefer": "always" }]
33
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"options": [{ "prefer": "always" }]
2+
"options": [{ "prefer": "always" }]
33
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"options": [{ "prefer": "empty" }]
2+
"options": [{ "prefer": "empty" }]
33
}

tests/fixtures/rules/prefer-class-directive/valid/empty/ignore-test05-input.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
let danger = false;
55
</script>
66

7-
<button class="{a ? 'a' : 'b'}">foo</button>
8-
<button class="{!a ? 'b' : 'a'}">foo</button>
9-
<button class="{a7 === 7 ? 'a' : 'b'}">foo</button>
7+
<button class={a ? 'a' : 'b'}>foo</button>
8+
<button class={!a ? 'b' : 'a'}>foo</button>
9+
<button class={a7 === 7 ? 'a' : 'b'}>foo</button>
1010
<button class="btn {danger ? 'btn-danger' : 'btn-primary'}">foo</button>

0 commit comments

Comments
 (0)