From b9ecbb261c35a5a44db147a0b5566936c7bddea2 Mon Sep 17 00:00:00 2001 From: Jimmy Berry Date: Tue, 23 Jan 2018 00:37:16 -0600 Subject: [PATCH] Add EditorConfig. --- .editorconfig | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..ac5c6330 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,29 @@ +# http://EditorConfig.org +root = true + +[**] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[abichecker/**.{conf,conf.in,html}] +indent_style = space +indent_size = 4 + +[**.{asciidoc,json,md,service,spec}] +indent_style = space +indent_size = 2 + +[dist/**] +indent_style = space +indent_size = 2 + +[Makefile] +indent_style = tab + +[**.{pl,py}] +indent_style = space +indent_size = 4