Closed hudochenkov closed 4 years ago
Similar to the properties-order order should report warning which weren't fixed by autofix. It could happen in CSS-in-JS, if rule has interpolations. Then postcss-sorting will skip it to not break the users code.
properties-order
order
postcss-sorting
{ order: ['declarations', 'rules'] }
const Component = styled.div` a { color: blue; } ${interpolation} color: tomato; `;
Similar to the
properties-order
order
should report warning which weren't fixed by autofix. It could happen in CSS-in-JS, if rule has interpolations. Thenpostcss-sorting
will skip it to not break the users code.