Add analyze mix alias to run the same credo checks we use in CI

This commit is contained in:
Mark Felder 2020-08-04 08:55:40 -05:00
parent e3953923ac
commit 697e3db01c
1 changed files with 2 additions and 1 deletions

View File

@ -214,7 +214,8 @@ defmodule Pleroma.Mixfile do
"ecto.setup": ["ecto.create", "ecto.migrate", "run priv/repo/seeds.exs"],
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate", "test"],
docs: ["pleroma.docs", "docs"]
docs: ["pleroma.docs", "docs"],
analyze: ["credo --strict --only=warnings,todo,fixme,consistency,readability"]
]
end