From 5d6b4622cd548d839d084b18d89aa9d7a9d01972 Mon Sep 17 00:00:00 2001 From: XmiliaH <45106915+XmiliaH@users.noreply.github.com> Date: Tue, 12 Oct 2021 22:07:40 +0200 Subject: [PATCH] More settings for editors Also set the charset, indentation, newline at end of file and no trailing whitespaces. --- .editorconfig | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 49fcfd1..42060ef 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,9 @@ root = true [*.js] -end_of_line = lf # Matches lint +charset = utf-8 +indent_style = tab +indent_size = 4 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true