-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.formatter.exs
64 lines (63 loc) · 1012 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
53
54
55
56
57
58
59
60
61
62
63
64
# Used by "mix format"
spark_locals_without_parens = [
after_all: 1,
allow_async?: 1,
argument: 1,
argument: 2,
argument: 3,
around: 1,
around: 2,
around: 3,
async?: 1,
batch_size: 1,
before_all: 1,
collect: 1,
collect: 2,
compensate: 1,
compose: 2,
compose: 3,
debug: 1,
debug: 2,
default: 0,
default: 1,
description: 1,
flunk: 2,
flunk: 3,
fun: 1,
group: 1,
group: 2,
impl: 1,
input: 1,
input: 2,
level: 1,
map: 1,
map: 2,
matches?: 1,
matches?: 2,
max_retries: 1,
middleware: 1,
middleware: 2,
on: 1,
return: 1,
run: 1,
source: 1,
step: 1,
step: 2,
step: 3,
strict_ordering?: 1,
switch: 1,
switch: 2,
transform: 1,
undo: 1,
wait_for: 1,
wait_for: 2
]
[
import_deps: [:spark],
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
plugins: [Spark.Formatter],
locals_without_parens: spark_locals_without_parens,
export: [
locals_without_parens: spark_locals_without_parens
]
]