Skip to content

Stylelint Setup for Scss

Mosne edited this page Jul 14, 2020 · 1 revision

CSS stylelint

VScode plugin

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 {}

MOSNE FF

Clone this wiki locally