You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stylelint is not functioning as expected. It should enforce rules such as 'declaration-colon-space-after' to correct instances like padding:15px; to padding: 15px;, but it appears to be malfunctioning.
To reproduce the issue, edit an SCSS file by removing the space after the colon, then execute npm run lint:stylelint. You'll notice that the rule is not being applied, even though it is typically included in standard Stylelint configurations.
The text was updated successfully, but these errors were encountered:
Stylelint is not functioning as expected. It should enforce rules such as 'declaration-colon-space-after' to correct instances like
padding:15px;
topadding: 15px;
, but it appears to be malfunctioning.To reproduce the issue, edit an SCSS file by removing the space after the colon, then execute
npm run lint:stylelint
. You'll notice that the rule is not being applied, even though it is typically included in standard Stylelint configurations.The text was updated successfully, but these errors were encountered: