Refactor code to comply with credo suggestions
[akkoma] / mix.exs
diff --git a/mix.exs b/mix.exs
index f38ce95af6a706220f9e21ea80cfff27240fce84..72c6fb15909aa264603bb89a4dde2d80f534d619 100644 (file)
--- a/mix.exs
+++ b/mix.exs
@@ -17,7 +17,7 @@ defmodule Pleroma.Mixfile do
   # Type `mix help compile.app` for more information.
   def application do
     [mod: {Pleroma.Application, []},
-     extra_applications: [:logger, :runtime_tools]]
+     extra_applications: [:logger, :runtime_tools, :comeonin]]
   end
 
   # Specifies which paths to compile per environment.
@@ -33,7 +33,16 @@ defmodule Pleroma.Mixfile do
      {:phoenix_ecto, "~> 3.2"},
      {:postgrex, ">= 0.0.0"},
      {:gettext, "~> 0.11"},
-     {:cowboy, "~> 1.0"}]
+     {:cowboy, "~> 1.0", override: true},
+     {:comeonin, "~> 3.0"},
+     {:trailing_format_plug, "~> 0.0.5" },
+     {:html_sanitize_ex, "~> 1.0.0"},
+     {:calendar, "~> 0.16.1"},
+     {:cachex, "~> 2.1"},
+     {:httpoison, "~> 0.11.1"},
+     {:ex_machina, "~> 2.0", only: :test},
+     {:credo, "~> 0.7", only: [:dev, :test]},
+     {:mix_test_watch, "~> 0.2", only: :dev}]
   end
 
   # Aliases are shortcuts or tasks specific to the current project.