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
33
34
35
36
37
38
|
{
"version": "2.0.0",
"runner": "terminal",
"command": "npm",
"tasks": [
{
"label": "lint",
"command": "npm",
"args": [
"run",
"livelint"
],
"type": "shell",
"isBackground": true,
"problemMatcher": [
{
"owner": "sass-lint",
"fileLocation": "relative",
"pattern": [
{
"regexp": "^(.*)\\((\\d+),(\\d+)\\): (info|warning|error) (.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
],
"background": {
"activeOnStart": false,
"beginsPattern": "^BEGIN LINT",
"endsPattern": "^END LINT"
}
}
]
}
]
}
|