fix: add --disable-playwright option to suppress Playwright prompts and usage

Co-authored-by: aider (openai/gpt-4.1) <noreply@aider.chat>
This commit is contained in:
Andrew Grigorev 2025-04-15 01:35:00 +03:00
parent 270e84287a
commit f106993cd1
3 changed files with 136 additions and 4 deletions

View file

@ -670,6 +670,12 @@ def get_parser(default_config_files, git_root):
######
group = parser.add_argument_group("Other settings")
group.add_argument(
"--disable-playwright",
action="store_true",
help="Never prompt for or attempt to install Playwright for web scraping (default: False).",
default=False,
)
group.add_argument(
"--file",
action="append",