ash_blog/.formatter.exs

21 lines
451 B
Elixir
Raw Normal View History

2022-10-25 04:04:45 +13:00
# Used by "mix format"
spark_locals_without_parens = [
archive_folder: 1,
body_attribute: 1,
created_at_attribute: 1,
file_namer: 1,
folder: 1,
slug_attribute: 1,
staging_folder: 1,
title_attribute: 1
]
2022-10-29 04:21:13 +13:00
2022-10-25 04:04:45 +13:00
[
2022-10-29 04:21:13 +13:00
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
import_deps: [:ash, :spark],
locals_without_parens: spark_locals_without_parens,
export: [
locals_without_parens: spark_locals_without_parens
]
2022-10-25 04:04:45 +13:00
]