Skip to content

Commit

Permalink
Fixup formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyjh committed Mar 16, 2020
1 parent 40c19d6 commit ac799d8
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions lib/dialyxir/project.ex
Original file line number Diff line number Diff line change
Expand Up @@ -271,14 +271,20 @@ defmodule Dialyxir.Project do
deps_project() ++ deps_app(false)

:project ->
info("Dialyxir has deprecated plt_add_deps: :project in favor of apps_direct, which includes only runtime dependencies.")
info(
"Dialyxir has deprecated plt_add_deps: :project in favor of apps_direct, which includes only runtime dependencies."
)

deps_project() ++ deps_app(false)

:apps_direct ->
deps_app(false)

:transitive ->
info("Dialyxir has deprecated plt_add_deps: :transitive in favor of app_tree, which includes only runtime dependencies.")
info(
"Dialyxir has deprecated plt_add_deps: :transitive in favor of app_tree, which includes only runtime dependencies."
)

deps_transitive() ++ deps_app(true)

_app_tree ->
Expand Down

0 comments on commit ac799d8

Please sign in to comment.