Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 459 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 459 Bytes

stylelint-known-property

Stylelint plugin to check if the css properties are valid.

Install

npm install -D stylelint-known-property

Usage

Add the plugin to your Stylelint config:

{
  "plugins": {
    "known-property": "stylelint-known-property"
  },

  "rules": {
    "known-property": [2, ["whitelisted-property"], ["blacklisted-property"]]
  }
}