vscode-scss
vscode-scss copied to clipboard
No error when a mixin doesn't exist
- VS Code Version: Latest
- SCSS IntelliSense Version: 0.9.0
- Operating System: Windows 10
Reproducible Case:
Steps to Reproduce:
- Create a SASS file with the following content:
.foo {
@include foo();
}
- Even with the error setting set to enable, no error or warning is thrown for that file even though
foomixin has not been imported.
I want to insist on the fact that this code does not compile with SASS. Trying to render it using node-sass for example throws the following error:
no mixin named foo.