UNPKG

stylelint-taro-rn

Version:

A collection of React Native specific rules for stylelint

33 lines (26 loc) 714 B
import { endsWith } from './endsWith' const hasInterpolation = require('../utils/hasInterpolation') /** * Check whether a property is standard */ export function isStandardSyntaxProperty ( property /*: string */ ) /*: boolean */ { // 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 }