From 0cd5220b3c35bc496f3442587ef400ec0a45f3a4 Mon Sep 17 00:00:00 2001 From: Shubh Date: Thu, 14 Mar 2024 20:24:00 +0530 Subject: [PATCH] [editorconfig] 'spaces' >> 'space' 'spaces' is not a valid value for indent_style ref: https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties#indent_style Signed-off-by: Shubh --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index c0d052e..d3a1d17 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,6 +2,6 @@ root = true [*.{h,cpp,hpp}] charset = utf-8 -indent_style = spaces +indent_style = space indent_size = 2 trim_trailing_whitespace = true