From 7f23fd7b631a115fda0ecffc7d2a17f088098934 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sun, 22 Sep 2024 09:09:24 +0300 Subject: [PATCH] chore(tooling): Flesh out file types for editorconfig --- .editorconfig | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index ed3d0ee..8122894 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,10 +6,16 @@ insert_final_newline = true charset = utf-8 trim_trailing_whitespace = true -[{*.py,fontship.in}] +[*.md] +trim_trailing_whitespace = false + +[{Makefile*,*.mk,*.mk.in}] +indent_style = tab +indent_size = 4 + +[{*.py,*.py.in}] indent_style = space indent_size = 4 -[{*.mk,Makefile*}] -indent_style = tab +[*.rs] indent_size = 4