From 5f7560b8daca7e87ae9d880a8657064244631892 Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Mon, 21 Nov 2022 14:53:29 +0100 Subject: [PATCH] build(editorconfig): set indent_size to 4 for python files (#21135) --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 2aa956b1fc..07993e25b9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -10,6 +10,9 @@ insert_final_newline = true [*.{c,h,in,lua}] max_line_length = 100 +[*.py] +indent_size = 4 + [{Makefile,**/Makefile,runtime/doc/*.txt}] indent_style = tab indent_size = 8