← Back

property-no-unknown warn

Prevents unknown properties being used.

Examples

❌  Incorrect

a {
    colr: blue;
}

a {
    my-property: 1;
}