0

一个 lint 文件如何使用 , 等进行提交,而不是项目中的所有mix credo文件mix format

在 JavaScript 生态系统中,这是通过lint-staged和完成的husky。Elixir 的 husky 包版本名为git_hooks,但我没有发现任何类似于 lint-staged 的​​东西。

是否存在一个 elixir 包来实现我在提交 elixir 文件时仅运行 lint 命令的目标?

我在 config/dev.ex 中使用 git_hook 运行的示例配置。

config :git_hooks,
  auto_install: true,
  verbose: true,
  mix_path: "docker exec --tty $(docker-compose ps -q web) mix",
  hooks: [
    pre_commit: [
      tasks: [
        {:mix_task, :format, ["--check-formatted"]},
        {:mix_task, :credo, ["--strict"]}
      ]
    ]
  ]
4

1 回答 1

1

我使用 git_hooks 包和以下内容得到了这个:

配置/dev.ex

config :git_hooks,
  auto_install: true,
  verbose: true,
  mix_path: "docker exec --tty $(docker-compose ps -q web) mix",
  hooks: [
    pre_commit: [
      tasks: [{:file, "./priv/githooks/pre_commit.sh"}]
   ]
 ]

priv/githooks/pre_commit.sh

#!/bin/ash

# notice the hash bang is for alpine linux's ash

# run mix format
git diff --name-only --cached | grep -E ".*\.(ex|exs)$" | xargs mix format --check-formatted

# run mix credo
git diff --name-only --cached | xargs mix credo --strict

使用文件任务类型,我使用了 git diff 命令并将暂存文件传送到不同的混合命令以进行 linting。

于 2021-12-20T22:33:02.547 回答