From 1d91abe092af2236b8f7af526bac5abe1876f678 Mon Sep 17 00:00:00 2001 From: Christian Wach Date: Thu, 31 Jan 2019 17:10:34 +0000 Subject: [PATCH] Add editor config file --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..03b7acd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# CiviCRM-WordPress editor configuration normalization. +# @see http://editorconfig.org/ + +# This is the top-most .editorconfig file; do not search in parent directories. +root = true + +# Unix-style newlines with a newline ending every file. +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +# Indentation. +[*.php] +indent_style = space +indent_size = 2