From 425982b1d3f1412c8293fdbd90a7320a3c878237 Mon Sep 17 00:00:00 2001 From: webchick <webchick@24967.no-reply.drupal.org> Date: Wed, 26 Dec 2012 10:27:33 -0800 Subject: [PATCH] Issue #1713662 by treyhunner, Eric_A, nod_, sun: Introduce .editorconfig to auto-configure editors that support it. --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000000..473bf576c564 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# Drupal editor configuration normalization +# @see http://editorconfig.org/ + +# This is the top-most .editorconfig file; do not search in parent directories. +root = true + +# All files. +[*] +end_of_line = LF +indent_style = space +indent_size = 2 + +# Not in the spec yet: +# @see https://github.com/editorconfig/editorconfig/wiki/EditorConfig-Properties +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true -- GitLab