I have an app that uses Stylelint to enforce stylistic rules inside styles, but here, Stylelint complains about indentation when a long line is split in half by Prettier.
@include box-shadow(
var(--shadow-offset) var(--shadow-offset) 0 var(--shadow-spread)
$color-white, // complains here about 2 extra whitespaces
var(--shadow-offset) var(--shadow-offset) $color-red
);
raises this error Expected indentation of 8 spaces (indentation)
I tried
/* stylelint-disable-line indentation */
/* stylelint-disable-line */
only
/* stylelint-disable */
gets rid of the "error".