Skip to content

Commit 061a199

Browse files
committed
chore: format/lint
1 parent b4efb3a commit 061a199

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.formatter.exs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ spark_locals_without_parens = [
1616
index: 2,
1717
message: 1,
1818
migrate?: 1,
19+
migration_defaults: 1,
1920
migration_types: 1,
2021
name: 1,
2122
on_delete: 1,

lib/join.ex

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,7 @@ defmodule AshPostgres.Join do
493493
join_relationship =
494494
Ash.Resource.Info.relationship(relationship.source, relationship.join_relationship)
495495

496-
join_path =
497-
Enum.reverse([join_relationship.name | path])
496+
join_path = Enum.reverse([join_relationship.name | path])
498497

499498
full_path = path ++ [relationship.name]
500499

lib/repo.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ defmodule AshPostgres.Repo do
6161
def migrations_path, do: nil
6262
def default_prefix, do: "public"
6363
def override_migration_type(type), do: type
64-
def min_pg_version(), do: 10
64+
def min_pg_version, do: 10
6565

6666
def all_tenants do
6767
raise """

0 commit comments

Comments
 (0)