From 6eba9dd9e94c51def23f456d260eaad7b0a868cb Mon Sep 17 00:00:00 2001 From: Urs Wolfer Date: Sun, 25 Jan 2015 21:21:46 +0100 Subject: [PATCH] Add basic EditorConfig EditorConfig simplifies setting up an IDE / editor. It is supported by many tools like Vim, IntelliJ or Emacs. It doesn't support all options which are set in GoogleFormat.xml, but is a good base for tools other than Eclipse. Change-Id: I9777f0410f8ba3e39b6df046903947ac15ad9527 --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..1f149cf2d2 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +# http://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +end_of_line = lf +insert_final_newline = true +charset = utf-8 +indent_style = space +indent_size = 2