Skip to content

Commit 832ff5a

Browse files
committed
chore: add vscode task for tslint
1 parent 0551611 commit 832ff5a

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.vscode/tasks.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"version": "0.1.0",
3+
"command": "npm",
4+
"isShellCommand": true,
5+
"showOutput": "always",
6+
"suppressTaskName": true,
7+
"tasks": [
8+
{
9+
"taskName": "tslint",
10+
"args": [ "run", "gulp", "tslint", "--color" ],
11+
"problemMatcher": {
12+
"owner": "tslint",
13+
"fileLocation": [
14+
"relative",
15+
"${workspaceRoot}"
16+
],
17+
"severity": "warning",
18+
"pattern": {
19+
"regexp": "^\\(\\S.*\\) (\\S.*)\\[(\\d+), (\\d+)\\]:\\s+(.*)$",
20+
"file": 1,
21+
"line": 2,
22+
"column": 3,
23+
"message": 4
24+
}
25+
}
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)