Credo.Check.Consistency.MultiAliasImportRequireUse (Credo v1.5.0-rc.5) View Source

This check has a base priority of high and works with any version of Elixir.

Explanation

When using alias, import, require or use for multiple names from the same namespace, you have two options:

Use single instructions per name:

alias Ecto.Query
alias Ecto.Schema
alias Ecto.Multi

or use one multi instruction per namespace:

alias Ecto.{Query, Schema, Multi}

While this is not necessarily a concern for the correctness of your code, you should use a consistent style throughout your codebase.

Configuration parameters

There are no parameters for this check.

Link to this section Summary

Link to this section Functions

Link to this function

do_run_on_source_file(exec, source_file, params)

View Source