-
Notifications
You must be signed in to change notification settings - Fork 11
/
mix.exs
56 lines (48 loc) · 1.41 KB
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
defmodule ElixirSense.Mixfile do
@moduledoc false
use Mix.Project
def project do
[app: :elixir_sense,
version: "1.0.1",
elixir: "~> 1.5",
elixirc_paths: elixirc_paths(Mix.env),
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [coveralls: :test, "coveralls.detail": :test, "coveralls.html": :test],
dialyzer: [
flags: ["-Wunmatched_returns", "-Werror_handling", "-Wrace_conditions", "-Wunderspecs", "-Wno_match"]
],
deps: deps(),
docs: docs(),
description: description(),
package: package(),
]
end
def application do
[applications: [:logger]]
end
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
defp deps do
[{:excoveralls, "~> 0.6", only: :test},
{:dialyxir, "~> 0.4", only: [:dev]},
{:credo, "~> 0.8.4", only: [:dev]},
{:ex_doc, "~> 0.14", only: [:dev]}]
end
defp docs do
[main: "ElixirSense"]
end
defp description do
"""
An API/Server for Elixir projects that provides context-aware information
for code completion, documentation, go/jump to definition, signature info
and more.
"""
end
defp package do
[maintainers: ["Marlus Saraiva (@msaraiva)"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/msaraiva/elixir_sense"}]
end
end