From 9e7ac9057bacb696f442060af55e01cf97330e71 Mon Sep 17 00:00:00 2001 From: Tommy Ludwig <8924140+shakuzen@users.noreply.github.com> Date: Tue, 12 Mar 2019 16:11:55 +0900 Subject: [PATCH] Insert new line at end of files (EditorConfig) This prevents files' final line from showing up in diffs even though they aren't changed. Closes #1276 --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 124baaf75f..ad6fc37da5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,8 @@ root = true +[*] +insert_final_newline = true + [*.java] indent_style = space indent_size = 4