From 617a477be904056dc32e4db060a6b020f839fbd0 Mon Sep 17 00:00:00 2001 From: alemidev Date: Wed, 6 Jul 2022 12:41:40 +0200 Subject: [PATCH] style: tabs, 2 for rs, 4 for py --- .editorconfig | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index 97c4bec..dbc9ea9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,10 +1,13 @@ # Unix-style newlines with a newline ending every file [*] +charset = utf-8 +indent_style = tab end_of_line = lf insert_final_newline = true [*.py] -charset = utf-8 -indent_style = tab indent_size = 4 +[*.rs] +indent_size = 2 +