rules.scsslint.UnnecessaryParentReference.html Maven / Gradle / Ivy
Details
Do not use parent selector references (&
) when they would otherwise be
unnecessary.
Bad
.foo {
& > .bar {
...
}
}
Good
.foo {
> .bar {
}
}
Details
Do not use parent selector references (&
) when they would otherwise be
unnecessary.
Bad
.foo {
& > .bar {
...
}
}
Good
.foo {
> .bar {
}
}