Skip to content

Commit

Permalink
Ensure hints are not displayed on quiet mode (#1684)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaudoin committed Aug 3, 2021
1 parent 619b42d commit 27f7664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansiblelint/__main__.py
Expand Up @@ -151,7 +151,7 @@ def report_outcome( # noqa: C901
if "experimental" in match.rule.tags:
entries.append(" - experimental # all rules tagged as experimental\n")
break
if entries:
if entries and not options.quiet:
console_stderr.print(
"You can skip specific rules or tags by adding them to your "
"configuration file:"
Expand Down

0 comments on commit 27f7664

Please sign in to comment.