ash_state_machine/config/config.exs

32 lines
994 B
Elixir
Raw Normal View History

2023-04-22 07:25:39 +12:00
import Config
config :spark, :formatter,
remove_parens?: true,
2024-03-30 11:01:07 +13:00
"Ash.Domain": [],
2023-04-22 07:25:39 +12:00
"Ash.Registry": [],
"Ash.Resource": []
2023-04-23 13:38:33 +12:00
2024-03-30 11:01:07 +13:00
if Mix.env() == :test do
config :ash, :validate_domain_resource_inclusion?, false
config :ash, :validate_domain_config_inclusion?, false
config :ash_state_machine, :ash_domains, [Domain]
config :logger, level: :warning
2024-03-30 11:01:07 +13:00
end
2023-04-23 13:38:33 +12:00
if Mix.env() == :dev do
config :git_ops,
mix_project: AshStateMachine.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_state_machine",
# Instructs the tool to manage your mix version in your `mix.exs` file
# See below for more information
manage_mix_version?: true,
# Instructs the tool to manage the version in your README.md
# Pass in `true` to use `"README.md"` or a string to customize
manage_readme_version: [
"README.md",
2024-05-05 01:48:25 +12:00
"documentation/tutorials/getting-started-with-ash-state-machine.md"
2023-04-23 13:38:33 +12:00
],
version_tag_prefix: "v"
end