Skip to content

Commit fec8b6c

Browse files
visciangteamon
authored andcommitted
export formatting
1 parent eab4f3a commit fec8b6c

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.formatter.exs

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1+
# Used by "mix format" and to export configuration.
2+
export_locals_without_parens = [
3+
plug: 1,
4+
plug: 2,
5+
adapter: 1,
6+
adapter: 2
7+
]
8+
19
[
210
inputs: [
311
"lib/**/*.{ex,exs}",
412
"test/**/*.{ex,exs}",
513
"mix.exs"
614
],
7-
locals_without_parens: [
8-
plug: 1,
9-
plug: 2,
10-
adapter: 1,
11-
adapter: 2
12-
]
15+
locals_without_parens: export_locals_without_parens,
16+
export: [locals_without_parens: export_locals_without_parens]
1317
]

0 commit comments

Comments
 (0)