MhMadHamster / vscode-postcss-language

postcss syntax support extension for VSCode
MIT License
34 stars 7 forks source link

Does not respect CSS/SCSS validate setting #5

Closed chrishoage closed 7 years ago

chrishoage commented 7 years ago

I use Stylelint in a project with Postcss which defines some non-standard css properties and rules.

In my workspace settings I have

  "css.validate": false,
  "scss.validate": false

Which is supposed to suppress validation warnings for css and scss. When I have this plugin installed with

  "files.associations": {
    "*.css": "postcss"
  }

I can not disable the warnings

screen shot 2017-05-07 at 3 15 06 pm

Is it possible to turn off the validation while retaining auto complete?

MhMadHamster commented 7 years ago

Hey @chrishoage i just published new version, you can now add "postcss.validate": false in your vscode settings file to turn off validation for postcss

chrishoage commented 7 years ago

This works as expected, super big thanks for the quick turn around time and a PostCSS plugin that works with Intellesense.

You rock!