From dc0ac1f85d1a20fb8cee2f87fcd7ca9dc922fbd4 Mon Sep 17 00:00:00 2001 From: Seongmin Lee Date: Wed, 12 Nov 2025 20:04:20 +0900 Subject: [PATCH] editorconfig: add editorconfig Change-Id: lrpyptzomprqstqkpxxyvvnxtvsmrlnl helps forcing consistent indent sizes. especially html files Signed-off-by: Seongmin Lee --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..5e135d9b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +root = true + +[*.html] +indent_size = 2 + +[*.json] +indent_size = 2 + +[*.nix] +indent_size = 2 + +[*.yml] +indent_size = 2 -- 2.43.0