Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Formatting of :record_match #527

Merged
merged 1 commit into from
Dec 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/dialyxir/warnings.ex
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ defmodule Dialyxir.Warnings do
Dialyxir.Warnings.PatternMatch,
Dialyxir.Warnings.PatternMatchCovered,
Dialyxir.Warnings.RecordConstruction,
Dialyxir.Warnings.RecordMatch,
Dialyxir.Warnings.RecordMatching,
Dialyxir.Warnings.UnknownBehaviour,
Dialyxir.Warnings.UnknownFunction,
Expand Down
17 changes: 17 additions & 0 deletions lib/dialyxir/warnings/record_match.ex
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
defmodule Dialyxir.Warnings.RecordMatch do
@behaviour Dialyxir.Warning

@impl Dialyxir.Warning
@spec warning() :: :record_match
def warning(), do: :record_match

@impl Dialyxir.Warning
@spec format_short([String.t()]) :: String.t()
defdelegate format_short(args), to: Dialyxir.Warnings.RecordMatching

@impl Dialyxir.Warning
defdelegate format_long(args), to: Dialyxir.Warnings.RecordMatching

@impl Dialyxir.Warning
defdelegate explain(), to: Dialyxir.Warnings.RecordMatching
end