forked from tillig/DataProtection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
78 lines (73 loc) · 1.46 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
; EditorConfig to support per-solution formatting.
; Use the EditorConfig VS add-in to make this work.
; http://editorconfig.org/
; VS Add-In: http://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328
; Sublime Text Add-In: https://github.com/sindresorhus/editorconfig-sublime#readme
; Wildcards aren't used because there's a bug...
; https://github.com/editorconfig/editorconfig-visualstudio/issues/21
; This is the default for the codeline.
root = true
; default - tab
[*]
end_of_line = CRLF
indent_style = tab
trim_trailing_whitespace = true
; space / 4
[*.ascx]
indent_style = space
indent_size = 4
[*.aspx]
indent_style = space
indent_size = 4
[*.config]
indent_style = space
indent_size = 4
[*.cshtml]
indent_style = space
indent_size = 4
[*.html]
indent_style = space
indent_size = 4
[*.proj]
indent_style = space
indent_size = 4
[*.targets]
indent_style = space
indent_size = 4
[*.wxi]
indent_style = space
indent_size = 4
[*.wxl]
indent_style = space
indent_size = 4
[*.wxs]
indent_style = space
indent_size = 4
[*.xml]
indent_style = space
indent_size = 4
; space / 2
[*.csproj]
indent_style = space
indent_size = 2
[*.json]
indent_style = space
indent_size = 2
[*.kproj]
indent_style = space
indent_size = 2
[*.resx]
indent_style = space
indent_size = 2
[*.rst]
indent_style = space
indent_size = 2
[*.xproj]
indent_style = space
indent_size = 2
[NuGet.Config]
indent_style = space
indent_size = 2
[packages.config]
indent_style = space
indent_size = 2