ash/.formatter.exs
Zach Daniel 9f525d15ae
WIP
2019-12-02 11:25:00 -05:00

34 lines
592 B
Elixir

# Used by "mix format"
locals_without_parens = [
read: 1,
read: 2,
create: 1,
create: 2,
update: 1,
update: 2,
destroy: 1,
destroy: 2,
actions: 1,
defaults: 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,
resources: 1,
max_page_size: 1,
default_page_size: 1
]
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
locals_without_parens: locals_without_parens,
export: [
locals_without_parens: locals_without_parens
]
]