We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9f31ba commit 107064cCopy full SHA for 107064c
1 file changed
helpers/missing_ruff.py
@@ -58,6 +58,7 @@ def process_dir(path: Path) -> None:
58
linter = json.loads(linter_txt)
59
60
lint_info = {r["prefix"]: r["name"] for r in linter if r["prefix"] not in {"", "F"}}
61
+ lint_info = dict(sorted(lint_info.items()))
62
63
selected_items = {k: v for k, v in lint_info.items() if k in selected}
64
all_uns_items = {k: v for k, v in lint_info.items() if k not in selected}
@@ -85,8 +86,8 @@ def print_each(items: dict[str, str]) -> Iterator[str]:
85
86
)
87
uns = "\n".join(print_each(unselected_items))
88
89
+ print(Columns([panel_sel, panel_lib, panel_spec]))
90
if uns:
- print(Columns([panel_sel, panel_lib, panel_spec]))
91
print("[red]Unselected [dim](copy and paste ready)")
92
print(uns)
93
0 commit comments