Stylelint plugin to check if the css properties are valid.
npm install -D stylelint-known-property
Add the plugin to your Stylelint config:
{
"plugins": {
"known-property": "stylelint-known-property"
},
"rules": {
"known-property": [2, ["whitelisted-property"], ["blacklisted-property"]]
}
}