We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6114ec2 commit 575ebf5Copy full SHA for 575ebf5
bootcs/__main__.py
@@ -112,10 +112,11 @@ def run_check(args):
112
if not included:
113
termcolor.cprint("Warning: No files found to check", "yellow", file=sys.stderr)
114
115
- # Print header
116
- print()
117
- termcolor.cprint(f"🔍 Running checks for {slug}...", "cyan", attrs=["bold"])
118
+ # Print header (skip in JSON mode for clean output)
+ if args.output != "json":
+ print()
+ termcolor.cprint(f"🔍 Running checks for {slug}...", "cyan", attrs=["bold"])
119
120
121
# Run checks
122
targets = args.target if hasattr(args, 'target') and args.target else None
0 commit comments