From a4aa42e44d9e349498ac4edbea42435c4a5be01f Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sun, 3 Jul 2016 12:01:17 +0200 Subject: add editorconfig --- .editorconfig | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..cd9fd9d --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# This file is for unifying the coding style for different editors and IDEs +# editorconfig.org + +root = true + +[*] +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 2 +tab_width = 8 + +[**.css] +indent_style = space +indent_size = 8 + +[**.php] +indent_style = space +indent_size = 4 -- cgit