-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.formatter.exs
More file actions
25 lines (23 loc) · 676 Bytes
/
.formatter.exs
File metadata and controls
25 lines (23 loc) · 676 Bytes
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
# SPDX-FileCopyrightText: 2023 ash_double_entry contributors <https://github.com/ash-project/ash_double_entry/graphs/contributors>
#
# SPDX-License-Identifier: MIT
# Used by "mix format"
spark_locals_without_parens = [
account_resource: 1,
balance_resource: 1,
create_accept: 1,
data_layer_can_add_money?: 1,
destroy_balances?: 1,
money_composite_type?: 1,
open_action_accept: 1,
pre_check_identities_with: 1,
transfer_resource: 1
]
[
locals_without_parens: spark_locals_without_parens,
import_deps: [:ash],
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
export: [
locals_without_parens: spark_locals_without_parens
]
]