ash_state_machine/.formatter.exs

22 lines
448 B
Elixir
Raw Normal View History

2023-04-22 07:25:39 +12:00
spark_locals_without_parens = [
default_initial_state: 1,
deprecated_states: 1,
extra_states: 1,
2023-04-22 07:25:39 +12:00
from: 1,
initial_states: 1,
state_attribute: 1,
2023-04-23 12:12:11 +12:00
to: 1,
transition: 1,
transition: 2
2023-04-22 07:25:39 +12:00
]
2023-04-22 05:43:36 +12:00
# Used by "mix format"
[
import_deps: [:ash],
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
locals_without_parens: spark_locals_without_parens,
export: [
locals_without_parens: spark_locals_without_parens
]
]