-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.formatter.exs
More file actions
60 lines (58 loc) · 1.15 KB
/
.formatter.exs
File metadata and controls
60 lines (58 loc) · 1.15 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
# SPDX-FileCopyrightText: 2025 diffo contributors <https://github.com/diffo-dev/diffo/graphs.contributors>
#
# SPDX-License-Identifier: MIT
# Used by "mix format"
spark_locals_without_parens = [
calculate: 1,
category: 1,
characteristic: 2,
characteristic: 3,
constraints: 1,
create: 1,
create: 2,
description: 1,
feature: 1,
feature: 2,
id: 1,
inherited_party: 1,
inherited_party: 2,
inherited_place: 1,
inherited_place: 2,
instance_ref: 2,
is_enabled?: 1,
major_version: 1,
minor_version: 1,
name: 1,
parties: 2,
parties: 3,
party: 2,
party: 3,
party_ref: 2,
party_ref: 3,
patch_version: 1,
place: 2,
place: 3,
place_ref: 2,
place_ref: 3,
places: 2,
places: 3,
pool: 2,
reference: 1,
role: 2,
role: 3,
source: 1,
target: 1,
tmf_version: 1,
type: 1,
update: 1,
update: 2
]
[
plugins: [Spark.Formatter],
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
import_deps: [:ash, :ash_jason, :ash_neo4j, :ash_outstanding, :ash_state_machine],
locals_without_parens: spark_locals_without_parens,
export: [
locals_without_parens: spark_locals_without_parens
]
]