Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 601 Bytes

File metadata and controls

41 lines (29 loc) · 601 Bytes

value-no-vendor-prefix

Disallow vendor prefixes for values.

.foo { display: -webkit-flex; }
/**              ↑
 *  These prefixes */

Options

true

The following patterns are considered warnings:

.foo { display: -webkit-flex; }
.foo { max-width: -moz-max-content; }
.foo { background: -webkit-linear-gradient(bottom, #000, #fff); }

The following patterns are not considered warnings:

.foo { display: flex; }
.foo { max-width: max-content; }
.foo { background: linear-gradient(bottom, #000, #fff); }