I recently worked on #383 but noticed some behavior that I think is incorrect with the fix. Given this code: ```swift EmptyView() .padding([.vertical]) #if os(iOS) .iOSSpecificModifier() #endif ``` The formatter incorrectly does not indent the `.padding([.vertical])` on line 2: Output: ```swift EmptyView() .padding([.vertical]) #if os(iOS) .iOSSpecificModifier() #endif ``` I have a potential fix and will put up a pull request soon.