Sha256: 653993e05a57c8dfa3f031cf1e32d8941fbb3c49794b97ef220a2b1c6242dea8
Contents?: true
Size: 986 Bytes
Versions: 23
Compression:
Stored size: 986 Bytes
Contents
# at-rule-property-requirelist Specify a requirelist of properties for an at-rule. <!-- prettier-ignore --> ```css @font-face { font-display: swap; font-family: 'foo'; } /** ↑ ↑ ↑ * At-rule and required property names */ ``` ## Options `object`: `{ "at-rule-name": ["array", "of", "properties"] }` Given: ``` { "font-face": ["font-display", "font-family", "font-style"] } ``` The following patterns are considered violations: <!-- prettier-ignore --> ```css @font-face { font-family: 'foo'; src: url('./fonts/foo.woff2') format('woff2'); } ``` <!-- prettier-ignore --> ```css @font-face { font-family: 'foo'; font-style: normal; src: url('./fonts/foo.woff2') format('woff2'); } ``` The following patterns are _not_ considered violations: <!-- prettier-ignore --> ```css @font-face { font-display: swap; font-family: 'foo'; font-style: normal; src: url('./fonts/foo.woff2') format('woff2'); } ```
Version data entries
23 entries across 23 versions & 1 rubygems