Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions dialyzer.ignore-warnings
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
:0: Unknown type 'Elixir.Access':get/2
lib/code_corps/guardian.ex:26: The call 'Elixir.Timber':add_context(#{'__struct__':='Elixir.Timber.Contexts.UserContext', 'email':=_, 'id':=_, 'name':=_}) will never return since it differs in the 1st argument from the success typing arguments: (maybe_improper_list())
lib/code_corps/services/markdown_renderer_service.ex:29: Function convert_into_html/1 has no local return
lib/code_corps/services/markdown_renderer_service.ex:35: Function put_into/3 will never be called
lib/code_corps_web/endpoint.ex:1: The call 'Elixir.Timber.Integrations.PhoenixInstrumenter':phoenix_channel_receive('start',compile@1::map(),runtime@1::map()) will never return since it differs in the 1st and 3rd argument from the success typing arguments: ('stop',any(),'ok')
lib/code_corps_web/endpoint.ex:1: The call 'Elixir.Timber.Integrations.PhoenixInstrumenter':phoenix_channel_join('start',compile@1::map(),runtime@1::map()) will never return since it differs in the 1st and 3rd argument from the success typing arguments: ('stop',any(),'ok')
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defmodule CodeCorps.Mixfile do
elixir: "~> 1.5.2",
elixirc_paths: elixirc_paths(Mix.env),
compilers: [:phoenix, :gettext] ++ Mix.compilers,
dialyzer: [plt_add_apps: [:kernel, :stdlib], plt_add_deps: :transitive],
dialyzer: [ignore_warnings: "dialyzer.ignore-warnings", plt_add_apps: [:kernel, :stdlib], plt_add_deps: :transitive],
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
aliases: aliases(),
Expand Down