From f0b13ae8e458eeb881f78345db3205e71e3f94e1 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Thu, 22 Sep 2016 18:29:02 +0200 Subject: [PATCH] Add .editorconfig. --- .editorconfig | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..8df1d46d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,18 @@ +# +# see http://editorconfig.org/ +# + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 4 +indent_style = space +insert_final_newline = true +trim_trailing_whitespace = true + +[{GNUmakefile,Makefile,MMakefile}] +indent_size = 8 +indent_style = tab + +[*.S] +indent_size = 8