Last active
June 6, 2019 13:29
-
-
Save colin-haber/fb8b48986436d6960a20c0ec3a8a0800 to your computer and use it in GitHub Desktop.
A Visual Studio Code problem matcher for Sass command-line errors.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"problemMatcher": { | |
"pattern": { | |
"regexp": "^\\s*(\\S+) (\\S+)(?: \\(Line (\\d+): ([^\\)]*)\\))?$", | |
"severity": 1, | |
"file": 2, | |
"line": 3, | |
"message": 4 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cool did not know this was possible.
Here is one that works for for SassC + LibSass: