From 9470f2b0c87a1051c0fd629ce942a6bf15ede612 Mon Sep 17 00:00:00 2001 From: Dmitry Sharshakov Date: Thu, 7 Feb 2019 19:31:49 +0300 Subject: [PATCH] editorconfig: Don't insert final newline in .out files (#1686) --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index 9597195271..b4720d575a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -8,5 +8,9 @@ indent_size = 2 charset = utf-8 trim_trailing_whitespace = true +[*.out] # make editor neutral to .out files +insert_final_newline = false +trim_trailing_whitespace = false + [*.py] indent_size = 4