From b6001cf57d13947164f76275fd3913ec772031e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Bj=C3=B8rnskov?= Date: Sat, 16 Jun 2012 14:05:43 +0200 Subject: [PATCH] Add EditorConfig File http://editorconfig.org is a way to configure the different editor configurations. This could help some who develop with ruby and php where ruby uses 2 spaces and we use 4. Or where some develop for Drupal where they also use 2 spaces but 4 for contributing to Symfony. --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..153cf3ef5b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +; top-most EditorConfig file +root = true + +; Unix-style newlines +[*] +end_of_line = LF + +[*.php] +indent_style = space +indent_size = 4