.editorconfig 539 字节
Newer Older
S
Shapkin Arkady 已提交
1 2 3 4 5 6
# EditorConfig is awesome:
http://EditorConfig.org

# top-most EditorConfig file
root = true

7
# Don't use tabs for indentation.
S
Shapkin Arkady 已提交
8 9
[*]
indent_style = space
10 11 12 13
# (Please don't specify an indent_size here; that has too many unintended consequences.)

# Code files
[*.cs,*.csx,*.vb,*.vbx]
S
Shapkin Arkady 已提交
14 15 16 17 18 19 20 21 22
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
23 24 25 26

# JSON files
[*.json]
indent_size = 2