Code Climate engine for Credo a static code analysis tool for the Elixir Language.
You can configure this engine with the following options in your .codeclimate.yml
file:
engines:
credo:
enabled: true
strict: true
all: true
only: "warning"
ignore: "readability"
strict
- if you want to enforce a style guide and need a more traditional linting experienceall
- if you want to use all checkersonly
- run only a subset of checksignore
- ignore selected checks
For more information check credo repository.
You can configure this engine in .credo.exs
file within your project. More informations is available here.