• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2    "__comment": "Taken from vscode's vs/workbench/contrib/tasks/common/problemMatcher.ts msCompile rule",
3    "problemMatcher": [
4      {
5        "owner": "msvc-problem-matcher",
6        "pattern": [
7          {
8            "regexp": "^(?:\\s+\\d+\\>)?([^\\s].*)\\((\\d+),?(\\d+)?(?:,\\d+,\\d+)?\\)\\s*:\\s+(error|warning|info)\\s+(\\w{1,2}\\d+)\\s*:\\s*(.*)$",
9            "file": 1,
10            "line": 2,
11            "column": 3,
12            "severity": 4,
13            "code": 5,
14            "message": 6
15          }
16        ]
17      }
18    ]
19  }