Skip to content

Commit 8e49ae5

Browse files
committed
Add Mise tasks to run credo and sobelow
1 parent 3c3dc10 commit 8e49ae5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

mise.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,11 @@ run = "mix ecto.migrate"
8383
description = "Seed the database"
8484
depends = [ "docker-compose-up" ]
8585
run = "mix run priv/repo/seeds.exs"
86+
87+
[tasks.credo]
88+
description = "Lint Elixir code to enforce code consistency"
89+
run = "mix credo --strict"
90+
91+
[tasks.sobelow]
92+
description = "Check Elixir code for security vulnerabilities"
93+
run = "mix sobelow --private"

0 commit comments

Comments
 (0)