July 2018
Intermediate to advanced
420 pages
8h 46m
English
Now, let's configure VS Code to only use stylelint rules; this will prevent us from seeing double error messages in the VS Code integrated Terminal (if you are using a different code editor, don't worry about it). The steps are as follows:
In VS Code, navigate to Code | Preferences | Settings in the top menu.
Add the following code in the right-hand panel:
{
"css.validate": false,
"less.validate": false,
"scss.validate": false
}
To see the plugin in action, open the style.scss file in ./Client/src/style.scss. You will see the following in the bottom panel in VS Code:

Read now
Unlock full access