Bulk generator: Flip default values for summaries, sources, and sinks.

This commit is contained in:
Mathias Vorreiter Pedersen
2025-05-30 13:33:24 +01:00
parent 0f30644afd
commit 7cb9024cc6
3 changed files with 18 additions and 57 deletions

View File

@@ -47,15 +47,15 @@ class Project(TypedDict):
def should_generate_sinks(project: Project) -> bool:
return project.get("with-sinks", False)
return project.get("with-sinks", True)
def should_generate_sources(project: Project) -> bool:
return project.get("with-sources", False)
return project.get("with-sources", True)
def should_generate_summaries(project: Project) -> bool:
return project.get("with-summaries", False)
return project.get("with-summaries", True)
def clone_project(project: Project) -> str: