You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error comes from the css checker, for which we use vscode-css-languageservice. This is an upstream issue we can't do anything about, related issue here: microsoft/vscode-css-languageservice#375
Until this is fixed, you can configure the diagnostics sources and exclude css from the list (this removes all css syntax checks, but at least your build is green)
Describe the bug
We use CSS containers in our code, but svelte-check breaks if we use Container Query Length Units (cqw, cqh, ...) in our SCSS code.
We have this SCSS rule (the
var
has nothing to with the error):svelte-check
reports a syntax error at the last)
(I've added the '^' because I cannot use colors here):If I replace the
cqw
with for examplevw
,svelte-check
reports no problems.Edit: You don't even need
calc()
, just use these units anywhere.Reproduction
See above.
Expected behaviour
svelte-check should not report any problems, because this is valid code.
System Info
Which package is the issue about?
svelte-check
Additional Information, eg. Screenshots
This is completely blocking us currently, because we cannot deploy a feature while svelte-check is 'red'.
The text was updated successfully, but these errors were encountered: