Trying to follow best practices for Swift style. Both Airbnb and Google's guides say to limit the column width to 100 characters. In Xcode, I can set the page guide to be at column 100. Then I can manually scan each file to see if a line goes past that guide…. Isn't there a better way?
For example, suppose I inherit a project and want to quickly know which files have lines past a certain column width. And in those files, which lines those are. How can I do this?
Ideally, the solution will be in Xcode (vs Terminal), so I can efficiently jump to each problem line and fix it. (I'm fine fixing each line manually, as I'm still getting a handle on Google's extensive line-wrapping guidelines.)