Skip to content

Commit

Permalink
Improve ignore files for python functions. (#5513)
Browse files Browse the repository at this point in the history
  • Loading branch information
taeold authored Feb 13, 2023
1 parent 993850f commit b361ddf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/init/features/functions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,9 @@ async function languageSetup(setup: any, config: Config): Promise<any> {
case "typescript":
cbconfig.ignore = ["node_modules", ".git", "firebase-debug.log", "firebase-debug.*.log"];
break;
case "python":
cbconfig.ignore = ["venv", ".git", "firebase-debug.log", "firebase-debug.*.log"];
break;
}
return require("./" + language).setup(setup, config);
}

0 comments on commit b361ddf

Please sign in to comment.