Rule force-attribute-nesting
will enforce the nesting of attributes
When enabled, the following are disallowed:
input[type='radio'] {
color: red;
}
a[target='_blank'] {
content: '';
}
.form {
.class input[type='text'] {
padding: 0;
}
}
When enabled, the following are allowed:
input {
&[type='radio'] {
color: red;
}
}
a {
&[target='_blank'] {
content: '';
}
}
.form {
.class input {
&[type='text'] {
padding: 0;
}
}
}