From: David Barratt Date: Wed, 9 Aug 2017 22:53:23 +0000 (-0400) Subject: Add a simple .editorconfig X-Git-Tag: 1.34.0-rc.0~5241^2 X-Git-Url: http://git.cyclocoop.org/%27.%28%24current%20%3E%202?a=commitdiff_plain;h=e7e4e705c3dde7141f9ab24d88ec4f236ad6549e;p=lhc%2Fweb%2Fwiklou.git 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 --- 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