Leaxe
Results
2
comments of
Leaxe
Hey Michael, thanks for the response! I found out that FSharpList was not being converted because it doesn't implement a default constructor. I put together some unit tests and my...
Additional false positive: TupleIndentation when using named optional parameter assignments: ```f# type TestClass(arg1 : int, ?arg2 : int) = class end let x = TestClass( 1, ?arg2 = Some(2) )...