Packages

Formatter to streamline umbrella test output from a minimum of 7 lines down to a minimum of 3 lines

Current section

Files

Jump to

mix.exs

defmodule UmbrellaStreamlineFormatter.MixProject do
use Mix.Project
def project do
[
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
],
dialyzer: [
ignore_warnings: ".dialyzer_ignore.exs",
list_unused_filters: true,
plt_file: {:no_warn, "umbrella_streamline_formatter.plt"}
],
app: :umbrella_streamline_formatter,
version: "0.1.0",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description do
"Formatter to streamline umbrella test output from a minimum of 7 lines down to a minimum of 3 lines"
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/TheFirstAvenger/umbrella_streamline_formatter"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:git_hooks, "~> 0.3.1", only: :dev, runtime: false},
{:excoveralls, "~> 0.11.1", only: :test},
{:credo, "~> 1.0.5", only: :dev, runtime: false},
{:mix_test_watch, "~> 0.9.0", only: :dev, runtime: false},
{:dialyxir, "~> 1.0.0-rc.6", only: :dev, runtime: false},
{:earmark, "~> 1.3.2", only: :dev, runtime: false},
{:ex_doc, "~> 0.20.2", only: :dev, runtime: false}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
end