-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/legacy json support #108
Conversation
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.
Couple of qs, otherwise lgtm
bf56e00
to
7412e89
Compare
removed yalc and updated doc with recommendation to use npm link instead
7412e89
to
0d6b683
Compare
🎉 This PR is included in version 4.3.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
@@ -78,10 +78,10 @@ export async function makeRequest(payload: Payload): Promise<{ success: boolean; | |||
do { | |||
try { | |||
response = await needle(method, url, data, options); | |||
emitter.apiRequestLog(`<= Response: ${response.statusCode} ${JSON.stringify(response.body)}`.slice(0, 399)); | |||
emitter.apiRequestLog(`<= Response: ${response.statusCode} ${JSON.stringify(response.body)}`); |
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.
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.
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.
ah, i probably forgot to limit it inside vsc.
The idea was that we need to be able to debug this data.
And i was going to do this limiting inside vsc.
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.
@Arvi3d got it, thanks. I'll do it on VSC side myself 👍
What does this PR do?
This PR is a pre-requisite to update VSC to use new Code API, instead of the old one.
analysis option now accepts a new key legacy?: boolean to control results' format.
Where should the reviewer start?
How should this be manually tested?
Any background context you want to provide?
Screenshots
Additional questions