chore: fix build.

This commit is contained in:
James Harton 2024-04-11 14:21:14 +12:00
parent 6d0e104358
commit 6b8b0667bd
Signed by: james
GPG key ID: 90E82DAA13F624F4
2 changed files with 4 additions and 5 deletions

View file

@ -86,7 +86,7 @@
# If you don't want TODO comments to cause `mix credo` to fail, just # If you don't want TODO comments to cause `mix credo` to fail, just
# set this value to 0 (zero). # set this value to 0 (zero).
# #
{Credo.Check.Design.TagTODO, [exit_status: 2]}, {Credo.Check.Design.TagTODO, false},
{Credo.Check.Design.TagFIXME, []}, {Credo.Check.Design.TagFIXME, []},
# #

View file

@ -112,8 +112,7 @@ defmodule AshJsonApiWrapper.MixProject do
defp aliases do defp aliases do
[ [
sobelow: "sobelow --skip", sobelow: "sobelow --skip",
credo: "credo --strict", docs: ["docs", "spark.replace_doc_links"],
docs: ["docs", "ash.replace_doc_links"],
"spark.formatter": "spark.formatter --extensions AshJsonApiWrapper.DataLayer" "spark.formatter": "spark.formatter --extensions AshJsonApiWrapper.DataLayer"
] ]
end end
@ -139,9 +138,9 @@ defmodule AshJsonApiWrapper.MixProject do
# Dev/Test dependencies # Dev/Test dependencies
{:ex_doc, "~> 0.22", only: :dev, runtime: false}, {:ex_doc, "~> 0.22", only: :dev, runtime: false},
{:ex_check, "~> 0.12.0", only: :dev}, {:ex_check, "~> 0.12.0", only: :dev},
{:credo, ">= 0.0.0", only: :dev, runtime: false}, {:credo, ">= 0.0.0", only: [:dev, :test], runtime: false},
{:dialyxir, ">= 0.0.0", only: :dev, runtime: false}, {:dialyxir, ">= 0.0.0", only: :dev, runtime: false},
{:sobelow, "~> 0.13", only: :dev, runtime: false}, {:sobelow, "~> 0.13", only: [:dev, :test], runtime: false},
{:git_ops, "~> 2.5", only: :dev}, {:git_ops, "~> 2.5", only: :dev},
{:excoveralls, "~> 0.13.0", only: [:dev, :test]}, {:excoveralls, "~> 0.13.0", only: [:dev, :test]},
{:mix_test_watch, "~> 1.0", only: :dev, runtime: false}, {:mix_test_watch, "~> 1.0", only: :dev, runtime: false},