We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6170c64 commit a93d2bcCopy full SHA for a93d2bc
1 file changed
src/features/creators/autoFindProjects.ts
@@ -54,10 +54,12 @@ export class AutoFindProjects implements PythonProjectCreator {
54
public readonly displayName = ProjectCreatorString.autoFindProjects;
55
public readonly description = ProjectCreatorString.autoFindProjectsDescription;
56
57
+ supportsQuickCreate = true;
58
+
59
constructor(private readonly pm: PythonProjectManager) {}
60
61
async create(_options?: PythonProjectCreatorOptions): Promise<PythonProject | PythonProject[] | undefined> {
- const files = await findFiles('**/{pyproject.toml,setup.py}');
62
+ const files = await findFiles('**/{pyproject.toml,setup.py}', '**/.venv/**');
63
if (!files || files.length === 0) {
64
setImmediate(() => {
65
showErrorMessage('No projects found');
0 commit comments