We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26ffb52 commit 5b70918Copy full SHA for 5b70918
plain-code/plain/code/cli.py
@@ -112,7 +112,7 @@ def maybe_exit(return_code: int) -> None:
112
113
if not skip_ty and config.get("ty", {}).get("enabled", True):
114
print_event("ty check...", newline=False)
115
- result = subprocess.run(["ty", "check", path])
+ result = subprocess.run(["ty", "check", path, "--no-progress"])
116
maybe_exit(result.returncode)
117
118
if not skip_biome and config.get("biome", {}).get("enabled", True):
0 commit comments