35
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

credoを使ってElixirでRuboCopみたいにlintチェックをしよう!

Last updated at Posted at 2016-03-01

1. やりたいこと

Elixirというか、プログラミングをしていると構文チェックとかコーディング規約は気になりますね。

Elixirではどうやるのかな、とtwitterで探していたら
authorのrrreneさんから、credoという構文チェックツールを紹介いただきました!

RuboCopみたいだよ、とのことでした。

2. 利用してみたリポジトリ

3. 実施したこと

3-1. mix.exsに依存を追加

mix.exs
defp deps do
  [
    {:credo, "~> 0.3", only: [:dev, :test]}
  ]
end

3-2. mix deps.getを実施

3-3. mix credoを実行

credoタスクを実施すると下記のようにカラフルにチェックの結果が返ってきました。

スクリーンショット 2016-03-01 14.01.48.png

便利!

4. 所感

便利!、と言いつつ、うわ。。。私のコード。。となりますね。。
credoのルールを確認しながらリファクタしようと思います。

5. おまけ

前回の投稿「ElixirでもRubyのguardみたいにファイル変更時に自動でテストが走らせたい!そんな時は、mix-test.watchを使ってみよう!」で紹介させていただきましたが、config/config.exsで以下のように設定すると、testとcredoが両方動く環境を作れます。

config/config.exs
config :mix_test_watch,
  tasks: [
      "test",
      "credo",
  ]

構文チェックもしつつ、テストも回せるようになるので、いい感じに開発ができそうです^^

dogmaも時間を見つけて使ってみたいですね!


本日はここまでとなります。

35
24
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
35
24

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?