-
-
Notifications
You must be signed in to change notification settings - Fork 205
Closed
Description
Looking at the (silly example) code here:
let generateSillyPwd() =
System.Web.Security.Membership.GeneratePassword(9, 0)
.Replace("a","b")
.Replace("c","d")
.Replace("e","f")
.Replace("g","h")The max-length would allow this code.
Default setting Fantomas still breaks the namespaces, hiding the method call "GeneratePassword" with the intention of post-processing:
let generateSillyPwd() =
System
.Web
.Security
.Membership
.GeneratePassword(9, 0)
.Replace("a", "b")
.Replace("c", "d")
.Replace("e", "f")
.Replace("g", "h")When I read the code above, my focus is that "oh, this is System: That is important".
auduchinok
Metadata
Metadata
Assignees
Labels
No labels