Skip to content

Commit f1032c6

Browse files
authored
Merge pull request #64 from ugurtepecik/fix/infix-ops
fix: add missing infix operators
2 parents eb4319c + 855bbc0 commit f1032c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/style/pipes.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ defmodule Styler.Style.Pipes do
204204
# most of these values were lifted directly from credoa's pipe_chain_start.ex
205205
@literal ~w(__block__ __aliases__ unquote)a
206206
@value_constructors ~w(% %{} .. <<>> @ {} ^ & fn from)a
207-
@infix_ops ~w(++ -- && || in - * + / > < <= >= ==)a
207+
@infix_ops ~w(++ -- && || in - * + / > < <= >= == and or != !== ===)a
208208
@binary_ops ~w(<> <- ||| &&& <<< >>> <<~ ~>> <~ ~> <~> <|> ^^^ ~~~)a
209209
@valid_starts @literal ++ @value_constructors ++ @infix_ops ++ @binary_ops
210210

0 commit comments

Comments
 (0)