fsprojects / fantomas

FSharp source code formatter
https://fsprojects.github.io/fantomas
Other
770 stars 191 forks source link

Removes space between operator and parenthesized argument in static member operator definition #2864

Open cmeeren opened 1 year ago

cmeeren commented 1 year ago

Issue created from fantomas-online

Code

type A () =
    static member (^^.) (a, b) = ()

Result

type A() =
    static member (^^.)(a, b) = ()

Problem description

Fantomas removes the space after (^^.).

Extra information

Options

Fantomas main branch at 1/1/1990

Default Fantomas configuration

Did you know that you can ignore files when formatting from fantomas-tool or the FAKE targets by using a .fantomasignore file?