XAlign icon indicating copy to clipboard operation
XAlign copied to clipboard

Support for Object Mapper mapping alignment

Open bibekdari opened this issue 7 years ago • 0 comments

How to add support to format this?

mutating func mapping(map: Map) {
        teamId <- map["team_id"]
        channelId <- map["channel_id"]
        msgCount <- map["msg_count"]
        mentionCount <- map["mention_count"]
 }

to

mutating func mapping(map: Map) {
        teamId         <- map["team_id"]
        channelId      <- map["channel_id"]
        msgCount       <- map["msg_count"]
        mentionCount   <- map["mention_count"]
}

bibekdari avatar Feb 21 '18 07:02 bibekdari