Open
Description
Should we add the selector-no-union-class-name
rule to disallow inline &
in CSS selectors? This would prevent incomplete selectors in SCSS files, but still allow combining selectors.
For example:
.class {
&-union { /* not allowed */ }
&.child-class { /* this is okay */ }
}