From 29d6d2d23031b5582f2684f5d97728ec4404478b Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Wed, 9 Jan 2019 00:31:47 +0100 Subject: [PATCH] add .editorconfig file --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..17b5b69487 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +root = true +[*] +end_of_line = lf +insert_final_newline = true +indent_style = space +tab_width = 4 +charset = utf-8 + +[gcc/**/*] +indent_style = tab +tab_width = 8 +indent_width = 2 + +[binutils/**/*] +indent_style = tab +tab_width = 8 +indent_width = 2 + +[**/Makefile] +indent_style=tab