3 Disallow unknown properties.
11 This rule considers properties defined in the [CSS Specifications and browser specific properties](https://github.com/betit/known-css-properties#source) to be known.
13 This rule ignores variables (`$sass`, `@less`, `--custom-property`).
15 This rule ignores vendor-prefixed properties (e.g., `-moz-align-self`, `-webkit-align-self`).
16 Use option `checkPrefixed` described below to turn on checking of vendor-prefixed properties.
22 The following patterns are considered violations:
36 The following patterns are *not* considered violations:
52 -moz-align-self: center;
58 -webkit-align-self: center;
68 ## Optional secondary options
70 ### `ignoreProperties: ["/regex/", "string"]`
78 The following patterns are *not* considered violations:
88 my-other-property: 10px;
98 ### `checkPrefixed: true | false` (default: `false`)
100 If `true`, this rule will check vendor-prefixed properties.
102 For example with `true`:
104 The following patterns are *not* considered violations:
108 -webkit-overflow-scrolling: auto;
118 The following patterns are considered violations:
122 -moz-align-self: center;
128 -moz-overflow-scrolling: center;