-
Notifications
You must be signed in to change notification settings - Fork 0
Stylelint Setup for Scss
Mosne edited this page Jul 14, 2020
·
1 revision
Install the following plugins:
configure VScode adding:
"editor.formatOnPaste": true,
"stylelint.packageManager": "yarn",
"stylelint.configOverrides": {},
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true
}
In disperate cases you can disable stylelint using:
/* stylelint-disable */
a {}
/* stylelint-enable */
or
/* stylelint-disable-line */
a {}