Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tap.json « matchers « .github - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c81ea9803fbc6bffabe1b1f6e6748702442c6b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  "//@npmcli/template-oss": "This file is automatically added by @npmcli/template-oss. Do not edit.",
  "problemMatcher": [
    {
      "owner": "tap",
      "pattern": [
        {
          "regexp": "^\\s*not ok \\d+ - (.*)",
          "message": 1
        },
        {
          "regexp": "^\\s*---"
        },
        {
          "regexp": "^\\s*at:"
        },
        {
          "regexp": "^\\s*line:\\s*(\\d+)",
          "line": 1
        },
        {
          "regexp": "^\\s*column:\\s*(\\d+)",
          "column": 1
        },
        {
          "regexp": "^\\s*file:\\s*(.*)",
          "file": 1
        }
      ]
    }
  ]
}