From b11e53fe62f08462a30ac95ec1fb5d2f35344410 Mon Sep 17 00:00:00 2001 From: Max Inden Date: Mon, 13 Mar 2023 08:29:29 +0100 Subject: [PATCH] feat(.editorconfig): set `insert_final_newline` to true Instructs editors to insert a newline at the end of a file and thus prevents GitHub flagging the missing newline. Pull-Request: #3578. --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index a14dd7a5168..d345939a868 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,4 +6,4 @@ end_of_line=lf charset=utf-8 trim_trailing_whitespace=true max_line_length=100 -insert_final_newline=false +insert_final_newline=true