From: Arkady Shapkin Date: Mon, 9 Feb 2015 20:23:03 +0000 (+0300) Subject: Add an .editorconfig file X-Git-Tag: accepted/tizen/base/20180629.140029~7150^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=15644cc201a23c12d57ff1abaa0cdff950ba2073;p=platform%2Fupstream%2Fcoreclr.git Add an .editorconfig file What is .editorconfig: http://editorconfig.org/#overview Plugins for IDEs to support: http://editorconfig.org/#download --- diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..4960236 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,32 @@ +# EditorConfig is awesome: +http://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Default settings: +# A newline ending every file +# Use 4 spaces as indentation +# Trim trailing whitespace +[*] +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.{asm,inc}] +indent_size = 8 + +# Xml project files +[*.{csproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}] +indent_size = 2 + +# Xml config files +[*.{props,targets,config,nuspec}] +indent_size = 2 + +[CMakeLists.txt] +indent_size = 2 + +[*.cmd] +indent_size = 2