Merge pull request #3806 from ei-grad/disable-playwright

feat: Add --disable-playwright flag to prevent Playwright installation and prompts
This commit is contained in:
paul-gauthier 2025-05-07 17:26:00 -07:00 committed by GitHub
commit b2e3d47d14
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 136 additions and 4 deletions

View file

@ -686,6 +686,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",