Precommit value is clean

This commit is contained in:
Maciej 2026-03-01 12:54:33 +02:00
parent 22a7fd9c6d
commit a597daa920
Signed by: maciej
GPG key ID: 28243AF437E32F99
3 changed files with 7 additions and 18 deletions

10
mix.exs
View file

@ -21,7 +21,7 @@ defmodule BirdyChat.MixProject do
def application do
[
mod: {BirdyChat.Application, []},
extra_applications: [:logger, :runtime_tools, :opentelemetry]
extra_applications: [:logger, :runtime_tools]
]
end
@ -66,11 +66,7 @@ defmodule BirdyChat.MixProject do
# Static analysis tools
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
# Telemetry
{:opentelemetry, "~> 1.0"},
{:opentelemetry_exporter, "~> 1.0"}
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false}
]
end
@ -90,10 +86,10 @@ defmodule BirdyChat.MixProject do
"esbuild birdy_chat --minify",
"phx.digest"
],
build_release: ["setup", "assets.deploy", "release"],
precommit: [
"compile --warnings-as-errors",
"credo --strict",
"dialyzer",
"deps.unlock --unused",
"format",
"test"