Skip to content

Commit 289858c

Browse files
committed
chore: export locals_without_parens for all macros
1 parent 2a90eeb commit 289858c

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.formatter.exs

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Used by "mix format"
2+
locals_without_parens = [
3+
typed_schema: 1,
4+
typed_schema: 2,
5+
typed_embedded_schema: 1,
6+
typed_embedded_schema: 2,
7+
field: 1,
8+
field: 2,
9+
field: 3,
10+
belongs_to: 2,
11+
belongs_to: 3,
12+
has_one: 2,
13+
has_one: 3,
14+
has_many: 2,
15+
has_many: 3,
16+
many_to_many: 2,
17+
many_to_many: 3,
18+
embeds_one: 2,
19+
embeds_one: 3,
20+
embeds_one: 4,
21+
embeds_many: 2,
22+
embeds_many: 3,
23+
embeds_many: 4,
24+
timestamps: 0,
25+
timestamps: 1,
26+
parameter: 1,
27+
parameter: 2,
28+
plugin: 1,
29+
plugin: 2
30+
]
31+
232
[
333
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
34+
locals_without_parens: locals_without_parens,
35+
export: [locals_without_parens: locals_without_parens],
436
import_deps: [:ecto, :typed_structor]
537
]

0 commit comments

Comments
 (0)