Remove trailing whitespace on save in IntelliJ IDEA 12

Viewed 63760

Is it possible to remove trailing whitespace automatically on save in IntelliJ IDEA? I know there are some workarounds, for example, using git to trim the whitespace on commit. Maybe this question is a duplicate of this one, but i hope this can be done without setting up keyboard shortcuts and macros.

5 Answers

In 2020.1 IntelliJ version:

File -> Settings -> Editor -> General -> then scroll down to 'Save Files'

Strip trailing spaces on Save option

Go to ==> PREFERENCES | GENERAL | OTHER |

Just as shown in the picture:

  1. Srip trailings spaces on Save: ALL
  2. Uncheck Allways keep....

It'll remove trailing spaces when save, not before

enter image description here

What worked for me was

Intelij

  1. Settings
  2. General
  3. On Save
  4. Unchecking remove trailing spaces

Workspace

  1. Find .editorconfig
  2. Set "trim_trailing_whitespace" setting.
[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = false
Related