ash_double_entry/config/config.exs

26 lines
817 B
Elixir
Raw Normal View History

import Config
2023-08-19 16:17:07 +12:00
if Mix.env() == :dev do
config :git_ops,
mix_project: AshDoubleEntry.MixProject,
changelog_file: "CHANGELOG.md",
repository_url: "https://github.com/ash-project/ash_double_entry",
# 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"],
version_tag_prefix: "v"
end
if config_env() == :test do
2024-04-02 10:21:49 +13:00
config :ash, :validate_domain_resource_inclusion?, false
config :ash, :validate_domain_config_inclusion?, false
2023-12-06 13:49:23 +13:00
config :ash, :disable_async?, true
end
2023-08-06 16:45:07 +12:00
config :spark, :formatter,
remove_parens?: true,
"Ash.Resource": []