From 2c6c855e427bbd1245b9e9ac60bfe4b77f432b9c Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 18 Mar 2020 09:47:07 +0900 Subject: [PATCH] editorconfig: Add assembly code file spec This commit adds the editorconfig spec for assembly code files (*.S). Signed-off-by: Stephanos Ioannidis --- .editorconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.editorconfig b/.editorconfig index 694dfed83a4..89f23f0eb26 100644 --- a/.editorconfig +++ b/.editorconfig @@ -11,6 +11,11 @@ insert_final_newline = true trim_trailing_whitespace = true max_line_length = 80 +# Assembly +[*.S] +indent_style = tab +indent_size = 8 + # C [*.{c,h}] indent_style = tab