'Stylelint wont mark errors in VSCode
VScode doesn't show me any stylint errors.
package.json:
...
"postcss": "^8.4.12",
"postcss-scss": "^4.0.3",
"stylelint": "^14.7.1",
"stylelint-config-sass-guidelines": "^9.0.1",
.stylelintrc.json:
{
"extends": "stylelint-config-sass-guidelines",
"files": ["**/*.scss"],
"customSyntax": "postcss-scss",
"rules": {
"color-named": "always-where-possible",
"max-nesting-depth": 5,
"selector-max-compound-selectors": 6,
"selector-no-qualifying-type": [
true,
{
"ignore": ["attribute", "class", "id"]
}
],
"selector-max-id": 1,
"no-extra-semicolons": true
}
}
vscode settings.json
...
"stylelint.enable": true,
"css.validate": false,
"scss.validate": false,
"less.validate": false,
Thats all i have configured. Im on vscodestylelint 1.2.2. Stylelint it self works in console just fine, vscode just won't show any errors.
Solution 1:[1]
Like Stylelint itself, the Stylelint VS Code extension only lints CSS by default. You must configure the extension to lint other languages like SCSS using the stylelint.validate property:
// vscode settings.json
...
"css.validate": false,
"scss.validate": false,
"stylelint.validate": ["css", "scss"],
This will turn off VS Code's built-in validator for CSS and SCSS, and then turn on Stylelint for them.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | jeddy3 |
