postcss-scss icon indicating copy to clipboard operation
postcss-scss copied to clipboard

SCSS parser for PostCSS.

Results 3 postcss-scss issues
Sort by recently updated
recently updated
newest added

Currently this package parses each line of a silent `//`-style comment as a separate `Comment` object. In practice, users usually think of comments on adjacent lines as part of a...

Example ```scss $var: /* comment 1 */ all /* comment 2 */ !import /* comment 3 */ ; /* comment 4 */ ``` Parse as ```shell Declaration { raws: {...

I use postcss-scss as a syntax file for stylelint, as explained [here](https://marketplace.visualstudio.com/items?itemName=stylelint.vscode-stylelint#only-css-and-postcss-are-validated-by-default). `@use` is not recognized.