smokestack/.formatter.exs

22 lines
384 B
Elixir
Raw Permalink Normal View History

spark_locals_without_parens = [
attribute: 2,
attribute: 3,
2024-03-28 10:04:54 +13:00
domain: 1,
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
]
]