Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. def project do
  2. [
  3. app: :your_project,
  4. version: "0.1.0",
  5. elixir: "~> 1.6",
  6. elixirc_paths: elixirc_paths(Mix.env()),
  7. elixirc_options: [warnings_as_errors: true],
  8. compilers: [:phoenix, :gettext] ++ Mix.compilers(),
  9. start_permanent: Mix.env() == :prod,
  10. aliases: aliases(),
  11. deps: deps(),
  12. dialyzer: [
  13. plt_file: {:no_warn, "priv/plts/dialyzer.plt"},
  14. ignore_warnings: ".dialyzer_ignore.exs"
  15. ]
  16. ]
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement