aboutsummaryrefslogtreecommitdiffstats
path: root/its/plugin/projects/issues-project/src
diff options
context:
space:
mode:
Diffstat (limited to 'its/plugin/projects/issues-project/src')
-rw-r--r--its/plugin/projects/issues-project/src/file5-1.html14
-rw-r--r--its/plugin/projects/issues-project/src/file5.htm13
-rw-r--r--its/plugin/projects/issues-project/src/file6.vue12
3 files changed, 39 insertions, 0 deletions
diff --git a/its/plugin/projects/issues-project/src/file5-1.html b/its/plugin/projects/issues-project/src/file5-1.html
new file mode 100644
index 0000000..908013f
--- /dev/null
+++ b/its/plugin/projects/issues-project/src/file5-1.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<!-- this file is not analyzed as HTML suffixes are changed to "htm" -->
+<html>
+<head>
+ <title>Page Title</title>
+ <style>
+b a {
+ color: pink;; /* S1116 | no-extra-semicolons */
+}
+ </style>
+</head>
+<body>
+</body>
+</html>
diff --git a/its/plugin/projects/issues-project/src/file5.htm b/its/plugin/projects/issues-project/src/file5.htm
new file mode 100644
index 0000000..8cb86d7
--- /dev/null
+++ b/its/plugin/projects/issues-project/src/file5.htm
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Page Title</title>
+ <style>
+b a {
+ color: pink;; /* S1116 | no-extra-semicolons */
+}
+ </style>
+</head>
+<body>
+</body>
+</html>
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>