ash_double_entry/.formatter.exs

18 lines
407 B
Elixir
Raw Normal View History

2023-07-22 12:27:52 +12:00
# Used by "mix format"
2023-08-06 16:45:07 +12:00
spark_locals_without_parens = [
account_resource: 1,
balance_resource: 1,
open_action_accept: 1,
pre_check_identities_with: 1,
transfer_resource: 1
]
2023-07-22 12:27:52 +12:00
[
2023-08-06 16:45:07 +12:00
locals_without_parens: spark_locals_without_parens,
2023-07-22 12:27:52 +12:00
import_deps: [:ash],
2023-08-06 16:45:07 +12:00
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
export: [
locals_without_parens: spark_locals_without_parens
]
2023-07-22 12:27:52 +12:00
]