Skip to content

Commit 37fa474

Browse files
authored
Revert --quiet to default to False (#241)
1 parent 985b383 commit 37fa474

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Log
22

3+
## [Unpublished]
4+
5+
- Changed
6+
- Reverted the default behavior of `--quiet` to be `False`
7+
38
## [0.6.6] - 2025-04-16
49

510
- Fixed

pydoclint/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def validateStyleValue(
4949
'-q',
5050
'--quiet',
5151
is_flag=True,
52-
default=True,
52+
default=False,
5353
help='If True, do not print the file names being checked to the terminal.',
5454
)
5555
@click.option(

0 commit comments

Comments
 (0)