Skip to content

Commit f71c239

Browse files
fahchenclaude
andcommitted
style: name unused binding in format_elixir_source case
Credo flags bare `_` as inconsistent with the project's `_foo` style. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent eb74331 commit f71c239

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/dprint_markdown_formatter.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ defmodule DprintMarkdownFormatter do
262262

263263
case formatted do
264264
"" -> {:ok, ""}
265-
_ -> {:ok, formatted <> "\n"}
265+
_non_empty -> {:ok, formatted <> "\n"}
266266
end
267267
end
268268
end

0 commit comments

Comments
 (0)