reactor/.formatter.exs

26 lines
474 B
Elixir
Raw Normal View History

2023-04-19 10:23:04 +12:00
# Used by "mix format"
spark_locals_without_parens = [
argument: 1,
argument: 2,
argument: 3,
async?: 1,
input: 1,
input: 2,
max_retries: 1,
return: 1,
step: 1,
step: 2,
step: 3,
transform: 1
]
2023-04-19 10:23:04 +12:00
[
import_deps: [:spark],
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
plugins: [Spark.Formatter],
locals_without_parens: spark_locals_without_parens,
export: [
locals_without_parens: spark_locals_without_parens
]
2023-04-19 10:23:04 +12:00
]