flycheck-credo
flycheck-credo copied to clipboard
flycheck-credo 
Installation
You can install this package from Melpa
M-x package-install RET flycheck-credo RET
Usage
Ensure that credo is installed in your project.
Then, in your init.el:
(eval-after-load 'flycheck
'(flycheck-credo-setup))
(add-hook 'elixir-mode-hook 'flycheck-mode)
This package works with both elixir-ts-mode and elixir-mode.
Options
You can tell flycheck-credo to call credo with the '--strict' argument.
(setq flycheck-elixir-credo-strict t)
Thanks
- @rrrene for credo.
- @lunaryorn for flycheck.