ash/.formatter.exs

22 lines
377 B
Elixir
Raw Normal View History

2019-10-03 16:08:36 +13:00
# Used by "mix format"
2019-10-04 08:07:57 +13:00
locals_without_parens = [
get: 1,
index: 1,
post: 1,
attribute: 2,
belongs_to: 2,
2019-10-04 21:30:25 +13:00
belongs_to: 3,
has_one: 2,
has_one: 3,
2019-10-04 08:07:57 +13:00
has_many: 2,
field: 2
]
2019-10-03 19:11:34 +13:00
2019-10-03 16:08:36 +13:00
[
2019-10-03 17:36:32 +13:00
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
2019-10-03 19:11:34 +13:00
locals_without_parens: locals_without_parens,
export: [
locals_without_parens: locals_without_parens
]
2019-10-03 16:08:36 +13:00
]