Skip to content

Commit 3fdcd84

Browse files
committed
ruff format: don't pass -q
`-q` suppresses errors on syntax error. Show them!
1 parent 9f5bec9 commit 3fdcd84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyterlab_code_formatter/formatters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ class RuffFormatFormatter(RuffFixFormatter):
480480
def label(self) -> str:
481481
return "Apply ruff formatter"
482482

483-
ruff_args = ["format", "-q", "-"]
483+
ruff_args = ["format", "-"]
484484

485485

486486
SERVER_FORMATTERS = {

0 commit comments

Comments
 (0)