forked from ash-project/ash_paper_trail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.formatter.exs
More file actions
42 lines (40 loc) · 1.02 KB
/
.formatter.exs
File metadata and controls
42 lines (40 loc) · 1.02 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
# SPDX-FileCopyrightText: 2022 ash_paper_trail contributors <https://github.com/ash-project/ash_paper_trail/graphs.contributors>
#
# SPDX-License-Identifier: MIT
spark_locals_without_parens = [
allow_nil?: 1,
attribute_type: 1,
attributes_as_attributes: 1,
belongs_to_actor: 2,
belongs_to_actor: 3,
change_tracking_mode: 1,
create_version_on_destroy?: 1,
define_attribute?: 1,
domain: 1,
ignore_actions: 1,
ignore_attributes: 1,
include_versions?: 1,
mixin: 1,
on_actions: 1,
only_when_changed?: 1,
primary_key_type: 1,
public?: 1,
public_timestamps?: 1,
reference_source?: 1,
relationship_opts: 1,
resource_identifier: 1,
sensitive_attributes: 1,
store_action_inputs?: 1,
store_action_name?: 1,
store_resource_identifier?: 1,
table_name: 1,
version_extensions: 1
]
[
import_deps: [:ash],
locals_without_parens: spark_locals_without_parens,
export: [
locals_without_parens: spark_locals_without_parens
],
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"]
]