From e7e4e705c3dde7141f9ab24d88ec4f236ad6549e Mon Sep 17 00:00:00 2001 From: David Barratt Date: Wed, 9 Aug 2017 18:53:23 -0400 Subject: [PATCH] Add a simple .editorconfig .editorconfig is a standardized format that many IDEs support (or have plugins for) to use a project's code style by default. Bug: T172959 Change-Id: I8e776665dca255ff5dead1a9874bcd73344e4d20 --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..92318180cd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.md] +trim_trailing_whitespace = false -- 2.20.1