smokestack/.formatter.exs

15 lines
291 B
Elixir
Raw Normal View History

2023-08-09 20:18:46 +12:00
spark_locals_without_parens = []
[
import_deps: [:spark],
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
]
]