mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-02 09:35:41 -05:00
Adds more linting rules
Fixes lint issues
This commit is contained in:
21
.vscode/tasks.json
vendored
21
.vscode/tasks.json
vendored
@@ -9,24 +9,33 @@
|
||||
// A task runner that calls a custom npm script that compiles the extension.
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"showOutput": "always",
|
||||
"showOutput": "silent",
|
||||
"tasks": [
|
||||
{
|
||||
"taskName": "compile",
|
||||
"command": "npm run compile",
|
||||
"command": "npm run compile --silent",
|
||||
"isBuildCommand": true,
|
||||
"isShellCommand": true,
|
||||
"problemMatcher": [ "$tsc", "$tslint5" ]
|
||||
"problemMatcher": [
|
||||
"$tsc",
|
||||
{
|
||||
"base": "$tslint5",
|
||||
"fileLocation": "relative"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"taskName": "lint",
|
||||
"command": "npm run lint",
|
||||
"command": "npm run lint --silent",
|
||||
"isShellCommand": true,
|
||||
"problemMatcher": "$tslint5"
|
||||
"problemMatcher": {
|
||||
"base": "$tslint5",
|
||||
"fileLocation": "relative"
|
||||
}
|
||||
},
|
||||
{
|
||||
"taskName": "watch",
|
||||
"command": "npm run watch",
|
||||
"command": "npm run watch --silent",
|
||||
"isBackground": true,
|
||||
"isShellCommand": true,
|
||||
"problemMatcher": "$tsc-watch"
|
||||
|
||||
Reference in New Issue
Block a user