From f85e6885ddbe1ebd1eb69c4b803698f4170814c7 Mon Sep 17 00:00:00 2001 From: Alexander Zeitler Date: Sat, 10 Apr 2021 22:01:59 +0200 Subject: [PATCH] style: append new line via `.editorconfig` --- .editorconfig | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 686a956..b36601e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,11 +3,19 @@ root = true [**/**.yml] indent_style = space indent_size = 2 +insert_final_newline = true [**/**.js] indent_style = space indent_size = 2 +insert_final_newline = true + +[**/**.ts] +indent_style = space +indent_size = 2 +insert_final_newline = true [**/**.json] indent_style = space -indent_size = 2 \ No newline at end of file +indent_size = 2 +insert_final_newline = true