-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.formatter.exs
60 lines (59 loc) · 1.08 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
# Used by "mix format"
spark_locals_without_parens = [
action: 1,
action: 2,
action_type: 1,
action_type: 2,
autocomplete_option_label_key: 1,
autocomplete_option_value_key: 1,
autocomplete_search_action: 1,
autocomplete_search_arg: 1,
autofocus: 1,
cell_class: 1,
class: 1,
column: 1,
column: 2,
count?: 1,
create: 3,
create: 4,
default_display: 1,
default_limit: 1,
default_sort: 1,
description: 1,
display_as: 1,
exclude: 1,
field: 1,
field: 2,
field_group: 1,
field_group: 2,
icon_name: 1,
identity: 1,
input_class: 1,
keep_live?: 1,
label: 1,
list: 3,
list: 4,
load_action: 1,
options: 1,
page: 2,
page: 3,
pagination: 1,
path: 1,
prompt: 1,
render_cell: 1,
route_helper: 1,
show: 3,
show: 4,
sortable?: 1,
type: 1,
update: 3,
update: 4,
view_as: 1
]
[
import_deps: [:ash],
locals_without_parens: spark_locals_without_parens,
export: [locals_without_parens: spark_locals_without_parens],
plugins: [Spark.Formatter, Styler],
inputs: ["*.{heex,ex,exs}", "{config,lib}/**/*.{heex,ex,exs}"]
]