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 198e6eb commit bbc71a8Copy full SHA for bbc71a8
src/beet.ts
@@ -30,5 +30,7 @@ export async function link(pythonPath: string, target: string) {
30
}
31
32
export async function getConfigFiles() {
33
- return vscode.workspace.findFiles("**/beet*.json");
+ let configFiles = await vscode.workspace.findFiles("**/beet*.{json,yml,yaml}");
34
+ configFiles = configFiles.concat(await vscode.workspace.findFiles("**/pyproject.toml"));
35
+ return configFiles;
36
0 commit comments