ash_state_machine/.formatter.exs
James Harton 5cba78616c
improvement: Add possible_next_states helper. (#9)
* improvement: Add `possible_next_states` helper.

* chore: add `mix spark.cheat_sheets`.
2023-09-15 15:15:29 +12:00

21 lines
448 B
Elixir

spark_locals_without_parens = [
default_initial_state: 1,
deprecated_states: 1,
extra_states: 1,
from: 1,
initial_states: 1,
state_attribute: 1,
to: 1,
transition: 1,
transition: 2
]
# 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
]
]