Skip to content

Files

Latest commit

 

History

History
37 lines (25 loc) · 607 Bytes

media-feature-no-missing-punctuation.md

File metadata and controls

37 lines (25 loc) · 607 Bytes

Pattern: Missing punctuation for non-boolean media feature

Issue: -

Description

Disallows missing punctuation for non-boolean media features.

@media (max-width: 600px) {}
/**              ↑
 * This punctuation */

This rule ensures that there is either a colon or a range operator in non-boolean media features.

Examples

The following patterns are considered warnings:

@media (max-width 600px) {}
@media (width   20em) {}

The following patterns are not considered warnings:

@media (max-width: 600px) {}
@media (width  >=  20em) {}