Packages

A Credo check to ensure hygenic domain boundaries.

Current section

Files

Jump to

mix.exs

defmodule CredoDomainBoundary.MixProject do
use Mix.Project
def project do
[
app: :credo_domain_boundary,
version: "0.1.6",
elixir: "~> 1.17",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs(),
source_url: "https://github.com/straatdotco/credo_domain_boundary",
homepage_url: "https://github.com/straatdotco/credo_domain_boundary"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:credo, "~> 1.7", runtime: false},
{:ex_doc, "~> 0.34", only: :dev, runtime: false},
{:ecto, "~> 3.13", only: :test}
]
end
defp description do
"A Credo check to ensure hygenic domain boundaries."
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/straatdotco/credo_domain_boundary"}
]
end
defp docs do
[
main: "CredoDomainBoundary",
source_url: "https://github.com/straatdotco/credo_domain_boundary"
]
end
end