-
Notifications
You must be signed in to change notification settings - Fork 1
/
.formatter.exs
53 lines (52 loc) · 980 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
locals_without_parens = [
deleted_at: 0,
deleted_at: 1,
get_by: 1,
get_by: 2,
get_by_id: 1,
list_actions: 0,
list_actions: 1,
list_by_ids: 0,
list_by_ids: 1,
search_action: 1,
search_action: 2,
search_calculation: 2,
soft_delete: 0,
soft_delete: 1,
timestamp: 1,
timestamp: 2,
]
[
import_deps: [
:ash,
:ash_authentication,
:ash_authentication_phoenix,
:ash_postgres,
:ash_phoenix,
:ecto,
:ecto_sql,
:phoenix,
:smokestack,
:spark,
],
subdirectories: [
"priv/*/migrations",
],
plugins: [
Phoenix.LiveView.HTMLFormatter,
Spark.Formatter,
FreedomFormatter,
],
inputs: [
"*.{heex,ex,exs}",
"{config,lib,test}/**/*.{heex,ex,exs}",
"priv/*/seeds.exs",
],
# Additional options are now supported:
trailing_comma: true,
local_pipe_with_parens: true,
locals_without_parens: locals_without_parens,
export: [
locals_without_parens: locals_without_parens,
],
]