forked from microsoft/testfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
49 lines (40 loc) · 938 Bytes
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
###############################
# Core EditorConfig Options #
###############################
root = true
# All files
[*]
indent_style = space
# Shell scripts
[*.sh]
end_of_line = lf
[*.{cmd,bat}]
end_of_line = crlf
# Visual Studio XML project files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
# Visual Studio and .NET related XML config files
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true
# YAML files
[*.{yml,yaml}]
indent_size = 2
trim_trailing_whitespace = true
# Markdown files
[*.md]
indent_size = 2
# PowerShell scripts
[*.ps1]
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true
# Code files
[*.{cs,csx,vb,vbx}]
indent_size = 4
tab_width = 4
insert_final_newline = true
trim_trailing_whitespace = true