mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 06:17:18 -04:00
.. | ||
index.js | ||
README.md |
media-feature-no-missing-punctuation
Deprecated: See CHANGELOG.
Disallow 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.
Options
true
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) {}