Skip to content

Commit

Permalink
added credo and dialyxir
Browse files Browse the repository at this point in the history
  • Loading branch information
ottojimb committed Apr 4, 2017
1 parent 656751b commit 6d38acd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ by adding `deep_clean` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:deep_clean, "~> 0.1.0"}]
[{:deep_clean, "~> 0.1.1"}]
end
```

Expand Down
6 changes: 4 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule DeepClean.Mixfile do

def project do
[app: :deep_clean,
version: "0.1.0",
version: "0.1.1",
elixir: "~> 1.4",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
Expand Down Expand Up @@ -45,6 +45,8 @@ defmodule DeepClean.Mixfile do
#
# Type "mix help deps" for more examples and options
defp deps do
[{:ex_doc, "~> 0.15.0", only: :dev}]
[{:ex_doc, "~> 0.15.0", only: :dev},
{:dialyxir, "~> 0.5.0", only: :dev},
{:credo, "~> 0.7.2", only: :dev}]
end
end
5 changes: 4 additions & 1 deletion mix.lock
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
%{"earmark": {:hex, :earmark, "1.2.0", "bf1ce17aea43ab62f6943b97bd6e3dc032ce45d4f787504e3adf738e54b42f3a", [:mix], []},
%{"bunt": {:hex, :bunt, "0.2.0", "951c6e801e8b1d2cbe58ebbd3e616a869061ddadcc4863d0a2182541acae9a38", [:mix], []},
"credo": {:hex, :credo, "0.7.2", "850463f126c09227994967fdcf8b8ad7684ab220f7727c00bcafc0ac37bd3660", [:mix], [{:bunt, "~> 0.2.0", [hex: :bunt, optional: false]}]},
"dialyxir": {:hex, :dialyxir, "0.5.0", "5bc543f9c28ecd51b99cc1a685a3c2a1a93216990347f259406a910cf048d1d7", [:mix], []},
"earmark": {:hex, :earmark, "1.2.0", "bf1ce17aea43ab62f6943b97bd6e3dc032ce45d4f787504e3adf738e54b42f3a", [:mix], []},
"ex_doc": {:hex, :ex_doc, "0.15.0", "e73333785eef3488cf9144a6e847d3d647e67d02bd6fdac500687854dd5c599f", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, optional: false]}]}}

0 comments on commit 6d38acd

Please sign in to comment.