warn
declaration-block-no-duplicate-propertiesDisallow duplicate properties within declaration blocks. This rule ignores variables ($sass, @less, --custom-property).
Examples
❌ Incorrect
a {
color: #FFFFFF;
color: #000000;
}
a {
color: #FFFFFF;
background: #000000;
color: #000000;
}
✅ Correct
a {
color: #ffffff;
}
a {
color: #ffffff;
background: #000000;
}