Swiftlint: Lines with only whitespace throw the trailing whitespace warning.

Created on 20 May 2015  ·  19Comments  ·  Source: realm/SwiftLint

Is that intentional?

Xcode seems to put them in. I have a fix if it isn't:
https://github.com/RussVanBert/SwiftLint/commit/5f02cdfc93840d979d5fb4ad65f20d7cfc90e30d

Most helpful comment

Settings -> Text Editing -> While editing

All 19 comments

Oh, I see it's explicitly discouraged. Maybe it needs a rule of its own.

"Don’t leave trailing whitespace.
Not even leading indentation on blank lines."

Is there a way to get Xcode to play nice with this?

Settings -> Text Editing -> While editing

This is intentional.

Hello @jpsim! I have the above issue. It seems that Xcode (the option that @segiddins suggested) does not work.

sample

Every time I create a new line, I need to remove the white spaces contained within the red box. Any clue?

@flexaddicted The Including whitespace-only lines preference works (in Xcode 8.0) for new lines. Whitespace in existing lines will need to be manually deleted.

You should be able to quickly do the manual part with swiftlint autocorrect.

On Oct 13, 2016, at 3:24 PM, Russ Van Bert [email protected] wrote:

@flexaddicted https://github.com/flexaddicted The Including whitespace-only lines preference works (in Xcode 8.0) for new lines. Whitespace in existing lines will need to be manually deleted.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub https://github.com/realm/SwiftLint/issues/18#issuecomment-253656451, or mute the thread https://github.com/notifications/unsubscribe-auth/AED9soq-_7Is3fGl1Ln8dF4xui_zXXjcks5qzq-ggaJpZM4Ehi1-.

@scottrhoyt @RussVanBert Thanks for the reply.

I also found additional info here Trim trailing spaces in Xcode. But the point is that it works

This setting only trims a line's trailing whitespace after the cursor has left that line

as per discussion. This is seems to be the default behavior.

That's an annoying bug. It's only for the line you're currently editing. I guess you'll need to move the cursor away from newly created lines before you navigate away from the file or save. I've logged a bug with Apple. You should too. I'm sure they will get marked as a dupe, but someone will look at it. It has been there a long time.

Steps to Reproduce:

  1. Open any Xcode project or create a new one.
  2. Verify the two Text Editing preferences are selected. "Automatically trim trailing whitespace" and "Including whitespace-only lines".
  3. Choose a .swift, .h or .m file.
  4. Hit the 'return' key one or more times (but don't move the cursor) to add empty lines.
  5. Take note of which line the cursor is on.
  6. Use the project navigator to navigate away from the file (this will cause the edited file to save).
  7. Navigate back to the file you edited.
  8. The line where the cursor was will contain whitespace.

@RussVanBert Thanks for confirming this 👍

I have a "Run Script" build phase after compiling, as recommended.

Perhaps I should add another Run Script phase _before_ compiling, with swiftlint autocorrect. What do you guys think about this idea?

I have to admit, I wish this were two different rules so I could disable the whitespace-only variant, particularly if the whitespace is inline with the rest of the text indentation. I kinda like being able to arrow-down through my code and have the cursor stay with the code indent level, but I definitely don't want random whitespace at the end of the line.

I created a separate rule way back in May 2015 (with tests). You'd need the three commits. https://github.com/RussVanBert/SwiftLint/commits/master
The code has probably deviated, but you could use it as a guide.

I think it should be separated to two different rules: trailing whitespaces and empty line indentation whitespaces. Maybe last one should be opt out. Xcode ability to indent imply lines is a perfect ability and many developers relay on it. There is should be ability to use it with swiftlint.

@geoffreywiseman @Vyazovoy you can do what you're asking by configuring the trailing_whitespace rule to ignore whitespace-only lines (ignores_empty_lines) or ignore comments (ignores_comments). See https://github.com/realm/SwiftLint/blob/master/Source/SwiftLintFramework/Rules/RuleConfigurations/TrailingWhitespaceConfiguration.swift

Thank you, @jpsim ! I've already found this customization. Really useful.

Is it possible to highlight the spaces (blank) with some color?

@richimf Swiftlint lints text files which ... don't really contain color information, so your question is puzzling me. Ae you asking on a SwiftLint bug for Xcode configuration tips?

@geoffreywiseman I mean with the native Xcode preferences. Because I always left blank spaces when coding. :/

Was this page helpful?
0 / 5 - 0 ratings