aboutsummaryrefslogtreecommitdiffstats
path: root/its
diff options
context:
space:
mode:
authorElena Vilchik2018-06-28 14:00:29 +0200
committerAmaury Levé2018-06-28 14:00:29 +0200
commit10718b0bdffc14769e37ee5b0faf804d8858bff9 (patch)
tree2418d96fc27357c851e849878ec178f74982f1b8 /its
parent1e0fc32ad10d840b4d38b2eb61926a6dc7fbfcaf (diff)
downloadsonar-css-10718b0bdffc14769e37ee5b0faf804d8858bff9.tar.bz2
Add 'at-root', 'error' and 'warn' to default of S4662 (#99)
Diffstat (limited to 'its')
-rw-r--r--its/plugin/projects/issues-project/src/file3.scss9
1 files changed, 5 insertions, 4 deletions
diff --git a/its/plugin/projects/issues-project/src/file3.scss b/its/plugin/projects/issues-project/src/file3.scss
index 5ceb19c..6f19ae1 100644
--- a/its/plugin/projects/issues-project/src/file3.scss
+++ b/its/plugin/projects/issues-project/src/file3.scss
@@ -66,9 +66,10 @@ unknown { /* S4670 | selecto
@mixin adjust-location($x, $y) {
@if unitless($x) {
color: blue;
- @debug ""
- @warn ""
- @error ""
+ @debug "";
+ @warn "";
+ @error "";
+ @at-root [dir="ltr"] { color: blue; }
} @else {
color: black;
}
@@ -89,4 +90,4 @@ $i: 6;
@while $i > 0 {
.item-#{$i} { width: 2em * $i; }
$i: $i - 2;
-} \ No newline at end of file
+}