Skip to content

Commit a1e3763

Browse files
Enable regex scans by default (#271)
1 parent a24b6e4 commit a1e3763

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Features:
1414
thanks to @dclayton-godaddy for showing the way.
1515
* [#244](https://github.com/godaddy/tartufo/pull/244) - Drops support for
1616
`--fetch/--no-fetch` option for local scans
17-
17+
* [#254](https://github.com/godaddy/tartufo/pull/260) - Changes the default value of
18+
`--regex/--no-regex` to True.
1819
v2.9.0 - 19 October 2021
1920
------------------------
2021

tartufo/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def get_command(self, ctx: click.Context, cmd_name: str) -> Optional[click.Comma
7777
@click.option(
7878
"--regex/--no-regex",
7979
is_flag=True,
80-
default=False,
80+
default=True,
8181
show_default=True,
8282
help="Enable high signal regexes checks.",
8383
)

0 commit comments

Comments
 (0)