diff options
| author | Elena Vilchik | 2019-06-14 10:01:23 +0200 | 
|---|---|---|
| committer | Tibor Blenessy | 2019-06-14 10:01:23 +0200 | 
| commit | eb017c3b5e0b4652210fb7bcd0a68fe0c36b29cf (patch) | |
| tree | 48fc01eeddd1ac38351e57d3ea7d7a4dcd2d1ef1 /its/plugin/projects/issues-project/src/file6.vue | |
| parent | 479b21eb67bd2f5f7170cb4e14b19561ed59ddcf (diff) | |
| download | sonar-css-eb017c3b5e0b4652210fb7bcd0a68fe0c36b29cf.tar.bz2 | |
Analyse CSS inside other language files (html, vue) (#183)
Diffstat (limited to 'its/plugin/projects/issues-project/src/file6.vue')
| -rw-r--r-- | its/plugin/projects/issues-project/src/file6.vue | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/its/plugin/projects/issues-project/src/file6.vue b/its/plugin/projects/issues-project/src/file6.vue new file mode 100644 index 0000000..ba35736 --- /dev/null +++ b/its/plugin/projects/issues-project/src/file6.vue @@ -0,0 +1,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> | 
