stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
14 lines (13 loc) • 304 B
JavaScript
// used by value-no-vendor-prefix and selector-no-vendor-prefix
// i.e. this list is deliberately not exhaustive
// cf https://www.w3.org/TR/CSS22/syndata.html#vendor-keyword-history
export const prefixes = new Set([
'-webkit-',
'-moz-',
'-ms-',
'-o-',
'-xv-',
'-apple-',
'-wap-',
'-khtml-',
]);