-
Notifications
You must be signed in to change notification settings - Fork 85
/
.formatter.exs
52 lines (52 loc) · 930 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
51
52
# Used by "mix format"
[
inputs: [
".formatter.exs",
"mix.exs",
"{config,lib,test}/**/*.{ex,exs}"
],
locals_without_parens: [
mount: 1,
params: :*,
helpers: 1,
version: 1,
plug: :*,
plug_overridable: :*,
requires: :*,
optional: :*,
group: :*,
given: :*,
mutually_exclusive: 1,
exactly_one_of: 1,
at_least_one_of: 1,
all_or_none_of: 1,
prefix: :*,
rescue_from: :*,
desc: :*,
detail: 1,
status: 2
],
export: [
locals_without_parens: [
mount: 1,
params: :*,
helpers: 1,
version: 1,
plug: :*,
plug_overridable: :*,
requires: :*,
optional: :*,
group: :*,
given: :*,
mutually_exclusive: 1,
exactly_one_of: 1,
at_least_one_of: 1,
all_or_none_of: 1,
prefix: :*,
rescue_from: :*,
desc: :*,
detail: 1,
status: 2
]
]
]