From 10fc8e4e339662a241ed9000bc432c02f55bad7a Mon Sep 17 00:00:00 2001 From: Seongmin Lee Date: Wed, 12 Nov 2025 11:04:20 +0000 Subject: [PATCH] editorconfig: add editorconfig helps forcing consistent indent sizes. especially html files Signed-off-by: Seongmin Lee --- .editorconfig | 13 +++++++++++++ 1 file(s) changed, 13 insertion(s)(+), 0 deletion(s)(-) diff --git a/.editorconfig b/.editorconfig new file mode 100644 --- /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 -- tangled.sh