From f5cc1061889df6ed3b50b36de65c8b9a4bfe7caa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Exp=C3=B3sito?= Date: Fri, 6 Aug 2021 13:52:43 +0200 Subject: [PATCH] editorconfig: Add trim_trailing_whitespace (#1193) From editorconfig.org: trim_trailing_whitespace: set to true to remove any whitespace characters preceding newline characters and false to ensure it doesn't. --- .editorconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/.editorconfig b/.editorconfig index cb5e11d0..b6792cc0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,6 +7,7 @@ charset = utf-8 end_of_line = lf indent_size = tab indent_style = space +trim_trailing_whitespace = true insert_final_newline = true max_line_length = 80 tab_width = 4