Merge pull request #3244 from erozenfeld/SIMDInit
[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
16 [*.{asm,inc}]
17 indent_size = 8
18
19 # Xml project files
20 [*.{csproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}]
21 indent_size = 2
22
23 # Xml config files
24 [*.{props,targets,config,nuspec}]
25 indent_size = 2
26
27 [CMakeLists.txt]
28 indent_size = 2
29
30 [*.cmd]
31 indent_size = 2