Instead of ``` let foo = [ x ] let bar = [| x |] ``` There should be a rule that prefers this: ``` let foo = List.singleton x let bar = Array.singleton x ```