Skip to content

Commit

Permalink
括弧含んでない、という条件追加
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Jun 25, 2024
1 parent a7defcf commit 908cda1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/src/main/scala/fix/ApplyInfixNoParen.scala
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ApplyInfixNoParen extends SyntacticRule("ApplyInfixNoParen") {
_,
_,
_
) =>
) if t.tokens.forall(!_.is[Token.LeftParen]) =>
Patch.lint(
Diagnostic(
id = "",
Expand Down

0 comments on commit 908cda1

Please sign in to comment.