From 12a8de0daba0816227c7010fc1b84d0abf70a500 Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Mon, 27 May 2024 15:37:05 +0200 Subject: [PATCH] .editorconfig: fix insert_final_newline option This option must be set to true to comply with the current style. --- .editorconfig | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/.editorconfig b/.editorconfig index 40392cd..afa4632 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,7 +3,7 @@ root = true [*] end_of_line = lf trim_trailing_whitespace = true -insert_final_newline = false +insert_final_newline = true [{CMakeLists.txt,*.cmake}] indent_style = space -- 1.7.1