From 7c6e993c1bfcedad7c70b1ca2f695304024cb1ef Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sat, 8 Mar 2025 11:16:13 -0600 Subject: [PATCH] fixup! Initial commit --- .editorconfig | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..512c6a5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,22 @@ +root = true + +[*] +end_of_line = lf +insert_final_newline =true +charset = utf-8 + +[*.{html,css,tera}] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{js,ts}] +indent_style = space +indent_size = 4 + +[*.json] +indent_style = space +indent_size = 2