From 6cb3f9272f9e8aacdf84964356be37a92198f836 Mon Sep 17 00:00:00 2001 From: Vlad Date: Tue, 3 Feb 2026 04:59:55 -0800 Subject: [PATCH] chore: add .editorconfig for consistent formatting Co-authored-by: Claude --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..87fd310 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.{js,ts,jsx,tsx,json,yml,yaml}] +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false