Cleanup work

This commit is contained in:
Maciej 2026-03-01 11:35:32 +02:00
parent eb6631dd8b
commit f0cf03141b
Signed by: maciej
GPG key ID: 28243AF437E32F99
11 changed files with 59 additions and 9 deletions

View file

@ -63,7 +63,10 @@ defmodule BirdyChat.MixProject do
{:jason, "~> 1.2"},
{:dns_cluster, "~> 0.2.0"},
{:bandit, "~> 1.5"},
{:credo, "~> 1.0", only: [:dev, :test]},
# Static analysis tools
{:credo, "~> 1.0", only: [:dev, :test], runtime: false},
{:dialyxir, "~> 1.0", only: [:dev, :test], runtime: false},
# Telemetry
{:opentelemetry, "~> 1.0"},
@ -90,6 +93,7 @@ defmodule BirdyChat.MixProject do
precommit: [
"compile --warnings-as-errors",
"credo --strict",
"dialyzer",
"deps.unlock --unused",
"format",
"test"