Open
Description
Prettier prefers:
margin-bottom: tools.rem2em(
tokens.$space-6,
tools.rem2em(tokens.$heading-small-desktop)
);
Stylelint prefers:
margin-bottom: tools.rem2em(tokens.$space-6, tools.rem2em(tokens.$heading-small-desktop));
This does not work either:
margin-bottom:
tools.rem2em(
tokens.$space-6,
tools.rem2em(tokens.$heading-small-desktop)
);
Workaround: disable either Stylelint or Prettier for that line / code block.
It seems there might be a conflict of declaration-colon-space-after
and declaration-colon-newline-after
Stylelint rules.