You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cp.execFile is used throughout the codebase to run various commands. Considering we run different tools all the time, it would be useful to have a helper function to abstract this a bit. #91 is a good justification for it.
We might also want to have a separate set of helpers for running go commands specifically.
The text was updated successfully, but these errors were encountered:
Another thing to consider is isolating CPU-intensive tools (see microsoft/vscode-go#1557). Currently, the resource intensive tools that I'm aware of are gopls and golangci-lint.
cp.execFile
is used throughout the codebase to run various commands. Considering we run different tools all the time, it would be useful to have a helper function to abstract this a bit. #91 is a good justification for it.We might also want to have a separate set of helpers for running
go
commands specifically.The text was updated successfully, but these errors were encountered: