smokestack/.formatter.exs

22 lines
381 B
Elixir
Raw Permalink Normal View History

spark_locals_without_parens = [
api: 1,
attribute: 2,
attribute: 3,
factory: 1,
factory: 2,
factory: 3
]
2023-08-09 20:18:46 +12:00
[
2023-08-10 21:01:45 +12:00
import_deps: [:ash, :spark],
2023-08-09 20:18:46 +12:00
inputs: [
"*.{ex,exs}",
"{config,lib,test}/**/*.{ex,exs}"
],
plugins: [Spark.Formatter],
locals_without_parens: spark_locals_without_parens,
export: [
locals_without_parens: spark_locals_without_parens
]
]