-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.formatter.exs
83 lines (82 loc) · 1.52 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
locals_without_parens = [
attr: 3,
form: 1,
link: 2,
live_file_input: 1,
live_file_input: 2,
live_img_preview: 1,
live_img_preview: 2,
live_patch: 2,
live_redirect: 2,
live_render: 2,
live_render: 3,
live_title_tag: 1,
live_title_tag: 2,
checkbox: 2,
checkbox: 3,
color_input: 2,
color_input: 3,
date_input: 2,
date_input: 3,
date_select: 2,
date_select: 3,
datetime_local_input: 2,
datetime_local_input: 3,
datetime_select: 2,
datetime_select: 3,
email_input: 2,
email_input: 3,
file_input: 2,
file_input: 3,
form_for: 3,
form_for: 4,
error_tag: 2,
hidden_input: 2,
hidden_input: 3,
live_component: 2,
input: 2,
input: 3,
label: 1,
label: 2,
label: 3,
label: 4,
multiple_select: 3,
multiple_select: 4,
number_input: 2,
number_input: 3,
password_input: 2,
password_input: 3,
radio_button: 3,
radio_button: 4,
range_input: 2,
range_input: 3,
reset: 1,
reset: 2,
search_input: 2,
search_input: 3,
select: 2,
select: 3,
select: 4,
submit: 1,
submit: 2,
telephone_input: 2,
telephone_input: 3,
text_input: 2,
text_input: 3,
textarea: 2,
textarea: 3,
time_input: 2,
time_input: 3,
time_select: 2,
time_select: 3,
url_input: 2,
url_input: 3
]
# Used by "mix format"
[
import_deps: [:ecto, :phoenix],
inputs: ["*.{heex,ex,exs}", "priv/*/seeds.exs", "{config,lib,test}/**/*.{heex,ex,exs}"],
subdirectories: ["apps/*"],
plugins: [Phoenix.LiveView.HTMLFormatter],
locals_without_parens: locals_without_parens
]