All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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 {
}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy