49602364ca36bdd48f6f0cbfeed365b241a43ace
[platform/upstream/coreclr.git] / .editorconfig
1 # EditorConfig is awesome:
2 http://EditorConfig.org
3
4 # top-most EditorConfig file
5 root = true
6
7 # Default settings:
8 # A newline ending every file
9 # Use 4 spaces as indentation
10 # Trim trailing whitespace
11 [*]
12 insert_final_newline = true
13 indent_style = space
14 indent_size = 4
15 trim_trailing_whitespace = true
16
17 [*.{asm,inc}]
18 indent_size = 8
19
20 # Xml project files
21 [*.{csproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}]
22 indent_size = 2
23
24 # Xml config files
25 [*.{props,targets,config,nuspec}]
26 indent_size = 2
27
28 [CMakeLists.txt]
29 indent_size = 2
30
31 [*.cmd]
32 indent_size = 2