summaryrefslogtreecommitdiff
path: root/tests/testdata/fmt/badly_formatted_fixed.svelte
blob: 7557e758d0fed63c9b05751a75ac62b714c88fb9 (plain)
1
2
3
4
5
6
7
8
9
10
<script lang="ts">
  let a: number;
  let b: number;
</script>

<div class:active style="width: 1px; height: 1px">{a + b}</div>

<style>
  .active {}
</style>