You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typer.Option("--eager/--lazy", help="Enable eager or lazy analysis. Eager will rebuild the analysis cache at every run and lazy will use the cache if available. Defaults to lazy.")
51
+
typer.Option(
52
+
"--eager/--lazy",
53
+
help="Enable eager or lazy analysis. Eager will rebuild the analysis cache at every run and lazy will use the cache if available. Defaults to lazy.",
54
+
),
54
55
] =False,
55
56
cache_dir: Annotated[
56
57
Optional[Path],
57
-
typer.Option("-c", "--cache-dir", help="Directory to store analysis cache. If not specified, the cache will be stored in the current working directory under .cache/codeanalyzer. Defaults to None.")
58
+
typer.Option(
59
+
"-c",
60
+
"--cache-dir",
61
+
help="Directory to store analysis cache. If not specified, the cache will be stored in the current working directory under .cache/codeanalyzer. Defaults to None.",
62
+
),
58
63
] =None,
59
64
clear_cache: Annotated[
60
65
bool,
61
-
typer.Option("--clear-cache/--keep-cache", help="Clear cache after analysis.")
66
+
typer.Option("--clear-cache/--keep-cache", help="Clear cache after analysis."),
0 commit comments