blob: ba35736760a4f069789d5d0409cdb7b49f62dc9d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | <!-- my-component.vue -->
<template>
  <div>hello</div>
</template>
<script>
let x = 42; // to verify highlighting by SonarJS
</script>
<style>
b a {
  color: pink;;                                               /* S1116 | no-extra-semicolons */
}
</style>
 |