carbon-design-system / stylelint-plugin-carbon-tokens

Apache License 2.0
9 stars 4 forks source link

Make splitValueList work with functions e.g. calc #6

Closed lee-chase closed 4 years ago

lee-chase commented 4 years ago

Currently, values are split by comma and then space. This is not sufficient to support functions like calc and rgb.

currently height: calc(1rem * 2); color: rgba(140, 140, 140, 0.5);

results in the following values being tested

These should be calc(1rem * 2) rgba(140, 140, 140, 0.5)