UNPKG

@udyux/stylelint-order

Version:

[fork] A collection of order related linting rules for stylelint.

11 lines (9 loc) 234 B
/** * Check whether a property is a custom one * * @param {string} property * @return {boolean} If `true`, property is a custom one */ module.exports = function isCustomProperty(property) { return property.startsWith('--'); };