-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.formatter.exs
47 lines (46 loc) · 998 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
# Used by "mix format"
locals_without_parens = [
field: 2,
field: 3,
internal_field: 2,
internal_field: 3,
filter: 2,
filter: 3,
option: 3,
command: 1,
import_commands: 1,
command: 2,
binding: 2,
query: 1,
query: 2,
derive_query: 2,
derive_query: 3,
derive_event: 1,
derive_event: 2,
derive_connection: 3,
derive_mutation_input: 1,
derive_mutation_input: 2,
derive_mutation: 2,
derive_mutation: 3,
computed_field: 2,
computed_field: 3,
derive_enum: 2,
connection_with_total_count: 1,
connection_with_total_count: 2,
connections_with_total_count: 1,
derive_object: 2,
derive_object: 3,
derive_input_object: 2,
derive_input_object: 3,
derive_relay_mutation: 2,
derive_relay_mutation: 3
]
[
locals_without_parens: locals_without_parens,
import_deps: [:ecto, :absinthe],
line_length: 120,
export: [
locals_without_parens: locals_without_parens
],
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]