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 82fbc1e commit 4060fa4Copy full SHA for 4060fa4
src/vuegen/report_generator.py
@@ -16,6 +16,7 @@ def get_report(
16
config_path: str = None,
17
dir_path: str = None,
18
streamlit_autorun: bool = False,
19
+ quarto_checks: bool = False,
20
output_dir: Path = None,
21
) -> tuple[str, str]:
22
"""
@@ -97,7 +98,7 @@ def get_report(
97
98
)
99
report_dir = output_dir / "quarto_report"
100
static_files_dir = report_dir / "static"
- quarto_report = QuartoReportView(report=report, report_type=report_type)
101
+ quarto_report = QuartoReportView(report=report, report_type=report_type, checks=quarto_checks)
102
quarto_report.generate_report(
103
output_dir=report_dir, static_dir=static_files_dir
104
0 commit comments