Skip to content

Commit

Permalink
mention SCSS linting in README (#62)
Browse files Browse the repository at this point in the history
* Mention SCSS linting in README

As stylelint is also suitable (and meant) for linting SCSS, I added the step to disable the built-in SCSS linter.

* Integrate SCSS linter disabling into existing example
  • Loading branch information
riddla authored and shinnn committed Mar 28, 2017
1 parent d3449d9 commit 0c68985
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ See the [extension installation guide](https://code.visualstudio.com/docs/editor

## Usage

Enable the linter in the VS Code [settings](https://code.visualstudio.com/docs/customization/userandworkspace), while disabling the built-in CSS linter:
Enable the linter in the VS Code [settings](https://code.visualstudio.com/docs/customization/userandworkspace), while disabling the built-in CSS and SCSS linter:

```json
{
"stylelint.enable": true,
"css.validate": false
"css.validate": false,
"scss.validate": false
}
```

Expand Down

0 comments on commit 0c68985

Please sign in to comment.