ash/.formatter.exs
2019-10-05 20:33:38 -04:00

24 lines
434 B
Elixir

# Used by "mix format"
locals_without_parens = [
get: 1,
index: 1,
post: 1,
attribute: 2,
attribute: 3,
belongs_to: 2,
belongs_to: 3,
has_one: 2,
has_one: 3,
has_many: 2,
has_many: 3,
many_to_many: 2,
many_to_many: 3
]
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
locals_without_parens: locals_without_parens,
export: [
locals_without_parens: locals_without_parens
]
]