UNPKG

stylelint

Version:

A mighty, modern CSS linter.

15 lines (12 loc) 264 B
/* @flow */ 'use strict'; /** * Check whether a media feature name is standard */ module.exports = function(mediaFeatureName /*: string*/) /*: boolean*/ { // SCSS interpolation if (/#{.+?}|\$.+?/.test(mediaFeatureName)) { return false; } return true; };