I'm trying to use autoprefixer in a project. And I'm setting indentation to 2 spaces and max line lenght to 80 characters. The thing is that these two settings seem to conflict with one another in several cases. Let's say i have:
@mixin do-something($value, $otherValue, $anotherValue,
$yetAnotherValue) {
border-bottom: ...
The warning here says that it's expecting the second line to have 0 indentation spaces:
2:5 ✖ Expected indentation of 0 spaces indentation
Is there a way to make stylelint ignore these cases. Something like an "Ignore indentation Indentation in line after class (or mixin) is declared"?