From 098530ad38f63035b9d385dce004cbb3b19adc3b Mon Sep 17 00:00:00 2001 From: Thibault Duplessis Date: Fri, 24 Feb 2023 19:03:44 +0100 Subject: [PATCH] fix typo in .editorconfig According to https://editorconfig.org/#file-format-details: > indent_style: set to tab or space to use hard tabs or soft tabs respectively. Apologies if this is known and the previous `spaces` syntax is preferred. In that case of course just close the PR. Thanks for kitty :cat: --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index 8f44e9c47..a2e66faf7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,7 @@ root = true [*] -indent_style = spaces +indent_style = space indent_size = 4 end_of_line = lf trim_trailing_whitespace = true