UNPKG

stylelint-taro-rn

Version:

A collection of React Native specific rules for stylelint

29 lines (26 loc) 820 B
import { endsWith } from './endsWith.js'; import { hasInterpolation } from './hasInterpolation.js'; /** * Check whether a property is standard */ function isStandardSyntaxProperty(property /*: string */) { // SCSS var (e.g. $var: x), list (e.g. $list: (x)) or map (e.g. $map: (key:value)) if (property[0] === '$') { return false; } // Less var (e.g. @var: x) if (property[0] === '@') { return false; } // Less append property value with space (e.g. transform+_: scale(2)) if (endsWith(property, '+') || endsWith(property, '+_')) { return false; } // SCSS or Less interpolation if (hasInterpolation(property)) { return false; } return true; } export { isStandardSyntaxProperty }; //# sourceMappingURL=isStandardSyntaxProperty.js.map