From daa06e7e328f0fd60120bf4d852fb7b824ac8876 Mon Sep 17 00:00:00 2001 From: Benjamin Young Date: Mon, 23 Sep 2024 10:12:36 -0700 Subject: [PATCH] Add .editorconfig. --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..010f2a5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{cjs,js,json,jsonld,mjs,yaml,yml}] +indent_style = space +indent_size = 2