From 4669240d0168c81b6073aa184af7f1973c676ded Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20H=C3=B8egh?= <22152591+BenjaminHoegh@users.noreply.github.com> Date: Fri, 8 Jun 2018 20:51:21 +0200 Subject: [PATCH] Added .editorconfig Added a .editorconfig file to help people keep the PSR-2 format when creating pull-request --- .editorconfig | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4a6f69b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.php] +indent_style = space +indent_size = 4 + +[*.md] +indent_style = space +indent_size = 2