AshCredo.Check.Warning.MissingDomain (ash_credo v0.16.1)

Copy Markdown View Source

Basics

This check is disabled by default.

Learn how to enable it via .credo.exs.

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

Explanation

In Ash 3.x, a resource normally declares its domain:

use Ash.Resource, domain: MyApp.Blog

Without it, code interfaces and domain configuration do not apply, and callers must supply the domain themselves. A resource shared across domains can opt out explicitly with domain: nil - the check accepts that and only flags a missing option.

Check-Specific Parameters

There are no specific parameters for this check.

General Parameters

Like with all checks, general params can be applied.

Parameters can be configured via the .credo.exs config file.