How to get better SASS intellisense in VS Code?

In Visual Studio (not VS Code), you get some green underlines on undeclared variables. When
@import
is used everywhere, this can be annoying in partials because pretty much everything will be undeclared until imported by your top level SASS file. But with
@use
(which I'm new to btw, so any guidance is welcome), it can finally be use-ful! Only problem is, VS still doesn't support
@use
. But I should really be using VS Code for this anyway... but in VS Code, I find the intellisense is even worse. No underlines for variables at all, and
Go To Definition
doesn't work on the variables even when
@import
or
@use
are used, which actually does work in Visual Studio, but only with
@import
.

I figured the out-of-the-box SASS editor experience would be great in VS Code, but it's not. Are there some extensions you guys recommend to make it better?
VS_SASS_intellisense.gif
VS_Code_SASS_intellisense.gif
Was this page helpful?