From 81b78710eaf39a8cea5d449122665f3abf96bf70 Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Tue, 27 Feb 2018 16:39:23 +0200 Subject: [PATCH] Trim trailing whitespace in editorconfig --- .editorconfig | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.editorconfig b/.editorconfig index 773cf0ab3..fa3c79415 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,15 +1,12 @@ -; Top-most EditorConfig file root = true -; Unix-style newlines [*] end_of_line = LF -; 4-column space indentation [*.cs] indent_style = space indent_size = 4 -; trim_trailing_whitespace = true +trim_trailing_whitespace = true insert_final_newline = true [*.cs]