forked from greenboxal/ecto_poly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.formatter.exs
50 lines (50 loc) · 873 Bytes
/
.formatter.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[
inputs: [
"apps/*/{config,lib,priv,test}/**/*.{ex,exs}",
"apps/*/mix.exs",
"mix.exs",
".formatter.exs",
".iex.exs"
],
locals_without_parens: [
add: :*,
arg: :*,
belongs_to: :*,
can: :*,
config: :*,
create: :*,
description: :*,
embeds_many: :*,
embeds_one: :*,
field: :*,
forward: :*,
gen_enum: :*,
get: :*,
has_many: :*,
has_one: :*,
import_fields: :*,
import_types: :*,
interface: :*,
many_to_many: :*,
middleware: :*,
named: :*,
payload_object: :*,
pipe_through: :*,
plug: 1,
policy: :*,
reload: :*,
render_error: :*,
resolve_type: :*,
resolve: :*,
response: :*,
serialize: :*,
socket: :*,
store_named: :*,
trigger: :*,
types: :*,
value: :*,
whereis_name: :*,
whereis: :*,
set: :*
]
]