vscode-bazel icon indicating copy to clipboard operation
vscode-bazel copied to clipboard

Bazel support for Visual Studio Code

Results 126 vscode-bazel issues
Sort by recently updated
recently updated
newest added
trafficstars

This has come up in a few other issues, but addressing it seems to be non trivial. The main pain points: - The treeview starts by doing a query for...

Buildifier can be run directly with bazel: ``` bazel run @com_github_bazelbuild_buildtools//buildifier -- -version ``` is it possible to use @com_github_bazelbuild_buildtools//buildifier if it was found in WORKSPACE?

vscode is showing the warning that buildifier has not been found but if you try to format it is still working. I did not have buildifier on the path, just...

It does not seem to be possible to build //.... If I select Bazel build package recursively I have to select a package and // is not an option. I...

type: feature request

If evaluation fails (e.g. user tries to add a watch for a variable that doesn't exist), this line fails: https://github.com/bazelbuild/vscode-bazel/blob/master/src/debug-adapter/client.ts#L409 ``` const value = (await this.bazelConnection.sendRequest({ evaluate: skylark_debugging.EvaluateRequest.create({ statement: args.expression,...

type: bug

Feature request to add to the bazel commands one in which the tool can find a sibling BUILD file or navigate up the directory tree until it finds the nearest...

type: feature request

With the two suggested extension open, an alert pops up from Prettier saying: > You have legacy linter options in your VS Code settings. They are no longer being used....

When I set breakpoints in .bzl files and go for "Build Target with Starlark Debugger" - it just runs the build, but does not stop on the breakpoints. Debug Console...

The code currently includes a workaround that sets the breakpoint twice because of external references. The linked issue is resolved, so this workaround might be safe to be removed, but...

type: cleanup