From 7c08e61b73d54bb91130041859dcedc74f7a8e0c Mon Sep 17 00:00:00 2001 From: Andrew Gallant Date: Fri, 16 Feb 2024 16:11:26 -0500 Subject: [PATCH] change indent to sensible value (#1540) --- .editorconfig | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index fd83967fe..05f81d381 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,3 +1,5 @@ +# Check http://editorconfig.org for more information +# This is the main config file for this project: root = true [*] @@ -6,4 +8,13 @@ trim_trailing_whitespace = true end_of_line = lf indent_style = space insert_final_newline = true -indent_size = 2 \ No newline at end of file +indent_size = 2 + +[*.{rs,py,pyi}] +indent_size = 4 + +[*.snap] +trim_trailing_whitespace = false + +[*.md] +max_line_length = 100