stylelint-declaration-strict-value
stylelint-declaration-strict-value copied to clipboard
Support deviation of primary and secondary regex options, needed or not?
At the moment regular expressions used within primary options have to match those used in secondary options. Deviation of those regexes isn't possible right now... is it needed?
// .stylelintrc
"rules": {
// ...
"scale-unlimited/declaration-strict-value": ["/color$/", "margin", {
ignoreFunctions: {
"/border-*-color$/": false,
},
}],
// ...
}