Skip to content

Commit

Permalink
Try to fix Dialyzer error
Browse files Browse the repository at this point in the history
  • Loading branch information
thbar committed Aug 30, 2023
1 parent 171ccdc commit 0a5ec28
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion apps/datagouvfr/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ defmodule Datagouvfr.MixProject do
{:vex, github: "CargoSense/vex", ref: "328a39f7"},
{:exvcr, "~> 0.13", only: :test},
{:mox, "~> 1.0.0", only: :test},
{:sentry, "~> 8.1"}
{:sentry, "~> 8.1"},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
]
end
end
3 changes: 2 additions & 1 deletion apps/gbfs/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ defmodule GBFS.MixProject do
{:mock, "~> 0.3.6", only: :test},
{:bypass, "~> 2.1", only: :test},
{:appsignal, "~> 2.0"},
{:appsignal_phoenix, "~> 2.0"}
{:appsignal_phoenix, "~> 2.0"},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
]
end
end
3 changes: 2 additions & 1 deletion apps/shared/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ defmodule Shared.MixProject do
{:ex_json_schema, "~> 0.10"},
# added because of `TransportWeb.Plugs.AppSignalFilter`
{:appsignal, "~> 2.0"},
{:appsignal_phoenix, "~> 2.0"}
{:appsignal_phoenix, "~> 2.0"},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
]
end
end
3 changes: 2 additions & 1 deletion apps/transport/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ defmodule Transport.Mixfile do
{:ex_phone_number, "~> 0.3"},
{:appsignal, "~> 2.0"},
{:appsignal_phoenix, "~> 2.0"},
{:vega_lite, "~> 0.1.7"}
{:vega_lite, "~> 0.1.7"},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
]
end
end
3 changes: 2 additions & 1 deletion apps/unlock/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ defmodule Unlock.MixProject do
# required for `TransportWeb.Plugs.AppSignalFilter`
{:shared, in_umbrella: true},
{:appsignal, "~> 2.0"},
{:appsignal_phoenix, "~> 2.0"}
{:appsignal_phoenix, "~> 2.0"},
{:dialyxir, "~> 1.2", only: [:dev, :test], runtime: false},
]
end
end

0 comments on commit 0a5ec28

Please sign in to comment.