From 3c214794d97b4fc545a4588640d5e7626cda0c46 Mon Sep 17 00:00:00 2001 From: Lee Mills Date: Mon, 4 May 2020 15:08:24 +0100 Subject: [PATCH] Added .editorconfig --- .editorconfig | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..6536d76 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# 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 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[composer.json] +indent_size = 2 + +[Makefile] +indent_style = tab