EEX with Phoenix dialyzer warnings

Dialyzer always gives a substantial amount of issues listed in the eex files for this phoenix website I have of the form of:

index.html.eex:1: The pattern {'safe', _@29} can never match the type <<_:8,_:_*1>>
index.html.eex:1: The pattern {'safe', _@24} can never match the type <<_:8,_:_*1>>
index.html.eex:1: The pattern {'safe', _@69} can never match the type [any()]

Is there any way to get it to ignore those or are these legitimate issues that I should resolve and how so?

Is it Phoenix 1.2? If yes, I think it’s a bug in that version. I mentioned how we handle it here. It might be fixed in 1.3, but I didn’t try it yet.

1 Like

{:phoenix, "~> 1.2.0"},
So yep, 1.2. How did I not see your linked post, thanks for that! :slight_smile: