Skip to content

Commit

Permalink
fix fmt config
Browse files Browse the repository at this point in the history
  • Loading branch information
jackalcooper committed Nov 3, 2023
1 parent e680b60 commit 09e267c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .formatter.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
locals_without_parens = [deftype: 1, deftype: 2, defop: 1, defop: 2, defalias: 1, defalias: 2]
# Used by "mix format"
[
locals_without_parens: locals_without_parens,
inputs: ["{mix,.formatter}.exs", "{config,lib,test}/**/*.{ex,exs}"],
export: [
locals_without_parens: locals_without_parens
Expand Down
6 changes: 3 additions & 3 deletions test/irdl_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ defmodule IRDLTest do
complex(any())
end

defalias any_complex2 do
complex(^any_f)
end
defalias any_complex, do: complex(any())

defalias any_complex2, do: complex(^any_f)

defop norm(t = ^any_complex) do
any()
Expand Down

0 comments on commit 09e267c

Please sign in to comment.