Skip to content

Commit

Permalink
fix (ide): Don't exclude bazel-* etc. folder in VSC
Browse files Browse the repository at this point in the history
While these are "ugly" to see in the Explorer in VSC,
some extension (Bazel Java support?) keeps changing this.

It's easier to give in ;) to whatever insists on this.
  • Loading branch information
vorburger committed Dec 9, 2023
1 parent 62188e7 commit d02cd5b
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,16 @@
"**/eclipse-bin/": true,
"**/eclipse-testbin/": true,
"**/.bazeltargets": true,
".cache": true,
".eclipse": true,
".git": true,
".idea": true,
".ijwb": true,
".venv": true,
"bazel-bin": true,
"bazel-enola": true,
"bazel-out": true,
"bazel-testlogs": true,
".cache": false,
".eclipse": false,
".git": false,
".idea": false,
".ijwb": false,
".venv": false,
"bazel-bin": false,
"bazel-enola": false,
"bazel-out": false,
"bazel-testlogs": false,
".github": false,
".vscode": false,
"cli": false,
Expand Down

0 comments on commit d02cd5b

Please sign in to comment.