From a916ca591c8a63fb6d1e3f97e1ddd17cd308394d Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Sun, 2 Feb 2025 20:53:13 -0600 Subject: [PATCH] add .js files to editorconfig, fix insert_final_newline --- src/test/.editorconfig | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/test/.editorconfig diff --git a/src/test/.editorconfig b/src/test/.editorconfig new file mode 100644 index 00000000000..7b9d5721aee --- /dev/null +++ b/src/test/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*.{js,ts}] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = false