-
Notifications
You must be signed in to change notification settings - Fork 530
/
.formatter.exs
64 lines (63 loc) · 1.01 KB
/
.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
53
54
55
56
57
58
59
60
61
62
63
64
locals_without_parens = [
mutation: 2,
query: 2,
subscription: 2,
arg: 2,
arg: 3,
complexity: 1,
config: 1,
deprecate: 1,
description: 1,
directive: 1,
directive: 2,
directive: 3,
enum: 2,
enum: 3,
expand: 1,
extend: 1,
extend: 2,
field: 2,
field: 3,
field: 4,
import_directives: 1,
import_directives: 2,
import_fields: 2,
import_fields: 1,
import_types: 1,
import_types: 2,
import_type_extensions: 1,
import_type_extensions: 2,
import_sdl: 1,
import_sdl: 2,
input_object: 3,
interface: 1,
interface: 3,
interfaces: 1,
is_type_of: 1,
meta: 1,
meta: 2,
middleware: 2,
middleware: 1,
object: 3,
on: 1,
parse: 1,
repeatable: 1,
resolve: 1,
resolve_type: 1,
scalar: 2,
scalar: 3,
serialize: 1,
trigger: 2,
types: 1,
union: 3,
value: 1,
value: 2,
values: 1
]
[
inputs: ["mix.exs", "{config,lib,test}/**/*.{ex,exs}"],
locals_without_parens: locals_without_parens,
export: [
locals_without_parens: locals_without_parens
]
]