Problem Matcher BuilderPaste your CLI's error output. Tag the parts. Get a working When a tool doesn't ship its own VS Code problem matcher — most linters, build scripts, and custom CLIs — you have to hand-write a regex-based JSON block by trial and error. The usual ritual: copy an error line, paste it into an external regex tester, hand-craft the pattern, then remember that JSON needs every backslash escaped a second time. Get it wrong and VS Code's only feedback is "the description can't be converted into a problem matcher" — no line number, no hint. This extension replaces that ritual. How it works
The status tag at the top reads Why the escaping is handled for youThe regex is held as a normal string and serialized with a standard JSON serializer, so every backslash is escaped exactly once — by construction, not by remembering. What's supported todaySingle-line problem patterns — the shape the overwhelming majority of tools produce ( From CodeFront StudioSmall, sharp developer tools that fix one specific annoying problem. codefrontstudio.com |