TheRealSyler / vscode-sass-indented

Sass indented syntax support for VSCode
https://marketplace.visualstudio.com/items?itemName=Syler.sass-indented
Other
44 stars 8 forks source link

Please check validity of the block starting from line #1 (CssSyntaxError)stylelint(CssSyntaxError) #74

Closed TacitBrawler closed 3 years ago

TacitBrawler commented 3 years ago

The bug persists right at the first line. version: 1.8.15

Screenshot (25)

TacitBrawler commented 3 years ago

Alright! when the file saved under '.scss' extension, it is working! Only going haywire when it is a '.sass'. sass has it's mapping missing on ".map" file. could someone please explain why this is happening?

TheRealSyler commented 3 years ago

@TacitBrawler you cannot use brackets in the .sass syntax, regardless the error is definitely not from this sass extension.

this extension is only for the .sass syntax, here is an example

div
  margin: 20px

this is the .scss syntax which is not supported by this extension.

div {
  margin: 20px
}