From 4200d859aaee29066a86c75a00b147dc56d60865 Mon Sep 17 00:00:00 2001 From: Quinn Date: Tue, 12 Aug 2025 10:12:31 +0200 Subject: [PATCH] fix: `.editorconfig` used `indent_size`, which should be equal to `tab` --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 0e0cd72..fe6544a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,8 +5,8 @@ trim_trailing_whitespace = true [*.{c,h}] indent_style = tab -indent_size = 4 +indent_size = tab [{makefile,Makefile}] indent_style = tab -indent_size = 2 +indent_size = tab