From f4263d4778b6926a027b61757b3ac1ec159c113e Mon Sep 17 00:00:00 2001 From: Shapkin Arkady Date: Thu, 12 Feb 2015 13:09:41 +0300 Subject: [PATCH] Add an .editorconfig file What is .editorconfig: http://editorconfig.org/#overview Plugins for IDEs to support: http://editorconfig.org/#download --- .editorconfig | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000000..2419dc99057 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,19 @@ +# EditorConfig is awesome: +http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Default settings: +# Use 4 spaces as indentation +[*] +indent_style = space +indent_size = 4 + +# Xml project files +[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}] +indent_size = 2 + +# Xml config files +[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}] +indent_size = 2 -- GitLab