A code snippet dealing with the scenario:
$unfolded-transitions: () !default;
@each $transition in $transitions {
$unfolded-transitions: append($unfolded-transitions, unfoldTransition($transition), comma); /* stylelint-disable-line scss/no-duplicate-dollar-variables */
}
Here I have explicitly used stylelint-disable-line
comment to skip the rule. Is it possible to tell stylelint to skip the 'no-duplicate-dollar-variables' rule when a variable is initialized with default as in the case above. In case if a value is assigned to a variable, then stylelint should report the required warning if there are duplicates.