-
Notifications
You must be signed in to change notification settings - Fork 645
Conversation
@kode4food, It will cover your contributions to all Microsoft-managed open source projects. |
@kode4food, thanks for signing the contribution license agreement. We will now validate the agreement and then the pull request. |
The one failing build configuration seems to be completely unrelated to the PR |
@kode4food, |
package.json
Outdated
@@ -450,6 +450,16 @@ | |||
"default": false, | |||
"description": "Run 'go test -coverprofile' on save" | |||
}, | |||
"go.showCovered": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Am a little hesitant to add new settings. The list of settings we have is really blowing up.
How about re-using the existing setting for coverage.
"go.coverOnSave": {
"type": ["boolean", "string"],
"enum": [true, "showCoveredOnly", "showUncoveredOnly"],
"default": true,
"description": "..."
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ramya-rao-a Just as well! I won't be able to get around to it until Friday though
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no problem, I am planning to release an update early next week. So Friday sounds good.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I lied, just pushed the changes
@kode4food, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great, the description of the setting needs an update, I'll take care of that
@kode4food Since we have the See 9ddd218 |
Adding two configuration options:
go.showCovered
(defaults to true) will decorate covered code in greengo.showUncovered
(defaults to true) will decorate uncovered code in red