Skip to content

Commit

Permalink
Merge pull request #190 from rexcfnghk/bugfix/fix-incorrect-warnings-…
Browse files Browse the repository at this point in the history
…for-foldback

Fix incorrect lint warnings for foldback
  • Loading branch information
Matt authored Nov 10, 2016
2 parents fb6b128 + 8388b78 commit 4bee743
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FSharpLint.Core/DefaultConfiguration.FSharpLint
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@
snd (x, y) ===> y
List.fold f x [] ===> x
Array.fold f x [||] ===> x
List.foldBack f x [] ===> x
Array.foldBack f x [||] ===> x
List.foldBack f [] x ===> x
Array.foldBack f [||] x ===> x
x - 0 ===> x
x * 1 ===> x
x / 1 ===> x
Expand Down

0 comments on commit 4bee743

Please sign in to comment.