forked from AkkomaGang/akkoma
Enable :warnings_as_errors for CI only
This commit is contained in:
parent
f9ae7e72e9
commit
079afd32d8
1 changed files with 2 additions and 3 deletions
5
mix.exs
5
mix.exs
|
@ -8,7 +8,7 @@ def project do
|
|||
elixir: "~> 1.9",
|
||||
elixirc_paths: elixirc_paths(Mix.env()),
|
||||
compilers: [:phoenix, :gettext] ++ Mix.compilers(),
|
||||
elixirc_options: [warnings_as_errors: warnings_as_errors(Mix.env())],
|
||||
elixirc_options: [warnings_as_errors: warnings_as_errors()],
|
||||
xref: [exclude: [:eldap]],
|
||||
start_permanent: Mix.env() == :prod,
|
||||
aliases: aliases(),
|
||||
|
@ -90,8 +90,7 @@ defp elixirc_paths(:benchmark), do: ["lib", "benchmarks"]
|
|||
defp elixirc_paths(:test), do: ["lib", "test/support"]
|
||||
defp elixirc_paths(_), do: ["lib"]
|
||||
|
||||
defp warnings_as_errors(:prod), do: false
|
||||
defp warnings_as_errors(_), do: true
|
||||
defp warnings_as_errors, do: System.get_env("CI") == "true"
|
||||
|
||||
# Specifies OAuth dependencies.
|
||||
defp oauth_deps do
|
||||
|
|
Loading…
Reference in a new issue