From 5a0ff27635c186a60f5a0967c2d403230d129333 Mon Sep 17 00:00:00 2001 From: hasna Date: Mon, 27 Jul 2026 23:55:45 +0300 Subject: [PATCH] chore: add .editorconfig for consistent formatting --- .editorconfig | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..bc9662e --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{js,jsx,ts,tsx,json,yml,yaml,md}] +indent_style = space +indent_size = 2 + +[*.md] +trim_trailing_whitespace = false