aboutsummaryrefslogtreecommitdiffstats
path: root/its/plugin/projects/css-plugin-test-project/src
diff options
context:
space:
mode:
authorAmaury Levé2018-06-21 14:55:09 +0200
committerGitHub2018-06-21 14:55:09 +0200
commit9bcc46b342cfb888f16c180cb0b3103335def5f1 (patch)
tree6b85805bbedef51c974b6984cb42b53052f9b375 /its/plugin/projects/css-plugin-test-project/src
parent913028fc4c913fec3bbc1800c00e526413040e01 (diff)
downloadsonar-css-9bcc46b342cfb888f16c180cb0b3103335def5f1.tar.bz2
Rule S4653: Units should be valid (#50)
Diffstat (limited to 'its/plugin/projects/css-plugin-test-project/src')
-rw-r--r--its/plugin/projects/css-plugin-test-project/src/file1.css10
-rw-r--r--its/plugin/projects/css-plugin-test-project/src/file2.less11
-rw-r--r--its/plugin/projects/css-plugin-test-project/src/file3.scss12
-rw-r--r--its/plugin/projects/css-plugin-test-project/src/file4.html10
4 files changed, 0 insertions, 43 deletions
diff --git a/its/plugin/projects/css-plugin-test-project/src/file1.css b/its/plugin/projects/css-plugin-test-project/src/file1.css
deleted file mode 100644
index 621aea1..0000000
--- a/its/plugin/projects/css-plugin-test-project/src/file1.css
+++ /dev/null
@@ -1,10 +0,0 @@
-.class1 {
- background-color: #2d5e8b;
-}
-.class1 .class2 {
- background-color: #ffw; /* issue here */
- color: #2d5e8b;
- foo: "some text";
-}
-
-/* some comment */ \ No newline at end of file
diff --git a/its/plugin/projects/css-plugin-test-project/src/file2.less b/its/plugin/projects/css-plugin-test-project/src/file2.less
deleted file mode 100644
index 691fd11..0000000
--- a/its/plugin/projects/css-plugin-test-project/src/file2.less
+++ /dev/null
@@ -1,11 +0,0 @@
-@color-base: #2d5e8b;
-.class1 {
- background-color: @color-base;
- .class2 {
- background-color: #fff;
- color: @color-base;
- foo: "some text";
- }
-}
-
-/* some comment */ \ No newline at end of file
diff --git a/its/plugin/projects/css-plugin-test-project/src/file3.scss b/its/plugin/projects/css-plugin-test-project/src/file3.scss
deleted file mode 100644
index fd62422..0000000
--- a/its/plugin/projects/css-plugin-test-project/src/file3.scss
+++ /dev/null
@@ -1,12 +0,0 @@
-$firstValue: 62.5%;
-
-$firstValue: 24px !default;
-
-body {
- font-size: $firstValue;
- foo: "some text";
-}
-
-// body font size = 62.5%
-
-/* some comment */ \ No newline at end of file
diff --git a/its/plugin/projects/css-plugin-test-project/src/file4.html b/its/plugin/projects/css-plugin-test-project/src/file4.html
deleted file mode 100644
index 499a20b..0000000
--- a/its/plugin/projects/css-plugin-test-project/src/file4.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<!doctype html>
-<title>Example</title>
-<style>
-p {
- font-size: 5vw;
- padding: 0 5vw;
- line-height: 1.8em;
- }
-</style>
-<p>Hello World!</p>