-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.formatter.exs
More file actions
71 lines (69 loc) · 1.31 KB
/
.formatter.exs
File metadata and controls
71 lines (69 loc) · 1.31 KB
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
# SPDX-FileCopyrightText: 2025 ash_typescript contributors <https://github.com/ash-project/ash_typescript/graphs/contributors>
#
# SPDX-License-Identifier: MIT
# Used by "mix format"
spark_locals_without_parens = [
allow_nil?: 1,
allowed_loads: 1,
argument: 2,
argument: 3,
argument_names: 1,
constraints: 1,
default: 1,
delete: 1,
delete: 2,
denied_loads: 1,
deprecated: 1,
description: 1,
enable_filter?: 1,
enable_sort?: 1,
error_handler: 1,
field_names: 1,
fields: 1,
get: 1,
get: 2,
get?: 1,
get_by: 1,
identities: 1,
metadata_field_names: 1,
method: 1,
module_name: 1,
namespace: 1,
not_found_error?: 1,
patch: 1,
patch: 2,
post: 1,
post: 2,
publish: 1,
publish: 2,
put: 1,
put: 2,
read_action: 1,
resource: 1,
resource: 2,
route: 1,
route: 2,
route: 3,
rpc_action: 2,
rpc_action: 3,
run: 1,
see: 1,
show_metadata: 1,
show_raised_errors?: 1,
topic: 1,
ts_fields_const_name: 1,
ts_result_type_name: 1,
type_name: 1,
typed_query: 2,
typed_query: 3,
zod_schema_name: 1
]
[
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
import_deps: [:ash],
plugins: [Spark.Formatter],
locals_without_parens: spark_locals_without_parens,
export: [
locals_without_parens: spark_locals_without_parens
]
]