1.0.2 • Published 8 years ago

stylelint-known-property v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

stylelint-known-property

Stylelint plugin to check if the css properties are valid (CSS2 & CSS3).

Options

ignore: string | array

Provide a property or a list of properties that will not be checked.

Install

npm install -D stylelint-known-property

Usage

Add the plugin to your Stylelint config:

{
  "plugins": [
    "stylelint-known-property"
  ],

  "rules": {
    "plugin/known-property": true
  }
}

With ignored properties:

{
  "plugins": [
    "stylelint-known-property"
  ],

  "rules": {
    "plugin/known-property": [true, {
      ignore: ['fill']
    }
  }
}

CSS Properties

CSS properties are validated based on known-css-properties list.

1.0.2

8 years ago

1.0.0

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.1

8 years ago