You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
May need to raise an issue against stylelint/postcss-scss as this fails.
NOTE: This does not even get as far as calling checkRule!
{
// TODO: fix this - fails to even get into
code: "$block: 'block'; :root {--#{$block}__value-accept: $layer-01;} .foo { color: var(--#{$block}__value-accept); }",
description:
"Accept --#{block}-variable declared before use with Carbon theme tokens."
},
This works but cheats on the custom property declaration.
{
code: "$block: 'block'; :root {--block-value-accept: $layer-01;} .foo { color: var(--#{$block}-value-accept); }",
description:
"Accept --#{block}-variable declared before use with Carbon theme tokens. Cheats on custom property declaration"
},
The text was updated successfully, but these errors were encountered:
May need to raise an issue against stylelint/postcss-scss as this fails.
NOTE: This does not even get as far as calling checkRule!
This works but cheats on the custom property declaration.
The text was updated successfully, but these errors were encountered: