property-no-unknown warn
Prevents unknown properties being used.
Examples
❌ Incorrect
a {
colr: blue;
}
a {
my-property: 1;
}
Netsells Code StandardsPrevents unknown properties being used.
❌ Incorrect
a {
colr: blue;
}
a {
my-property: 1;
}