We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4473261 commit 34658e2Copy full SHA for 34658e2
src/workspace.ts
@@ -1,16 +1,13 @@
1
import * as bazelmodule from './bazelmodule';
2
3
export class VsCodeWorkspace {
4
- private readonly filesExclude: string = 'files.exclude';
5
- private readonly currentFolder: string = '.';
6
-
7
folders: VsCodePath[];
8
settings: any;
9
constructor(modules: bazelmodule.BazelModule[]) {
10
this.folders = [];
11
- this.folders.push({ path: this.currentFolder });
+ this.folders.push({ path: '.' });
12
this.settings = {};
13
- this.settings[this.filesExclude] = this.buildExcludes(modules);
+ this.settings['files.exclude'] = this.buildExcludes(modules);
14
}
15
16
private buildExcludes(modules: bazelmodule.BazelModule[]): {} {
0 commit comments