1
0
mirror of https://github.com/thangisme/notes.git synced 2024-11-01 06:17:18 -04:00
notes/node_modules/stylelint/lib/rules/at-rule-no-vendor-prefix
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00
..
index.js Initial commit 2017-03-09 13:16:08 -05:00
README.md Initial commit 2017-03-09 13:16:08 -05:00

at-rule-no-vendor-prefix

Disallow vendor prefixes for at-rules.

    @-webkit-keyframes { 0% { top: 0; } }
/**  ↑
 * These prefixes */

Options

true

The following patterns are considered warnings:

@-webkit-keyframes { 0% { top: 0; } }
@-ms-viewport { orientation: landscape; }

The following patterns are not considered warnings:

@keyframes { 0% { top: 0; } }
@viewport { orientation: landscape; }