forked from dotnet/Kerberos.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
156 lines (93 loc) · 3.19 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# top-most EditorConfig file
root = true
# Don't use tabs for indentation.
[*]
indent_style = space
trim_trailing_whitespace = true
# (Please don't specify an indent_size here; that has too many unintended consequences.)
# Code files
[*.{cs,csx,vb,vbx}]
indent_size = 4
insert_final_newline = true
charset = utf-8-bom
# Xml project files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 2
# Xml config files
# IDE0003: Remove qualification
dotnet_style_qualification_for_event = false:none
# IDE0003: Remove qualification
dotnet_style_qualification_for_property = false:none
# IDE0003: Remove qualification
dotnet_style_qualification_for_method = false:none
# IDE0003: Remove qualification
dotnet_style_qualification_for_field = false:none
# IDE0054: Use compound assignment
dotnet_style_prefer_compound_assignment = false:suggestion
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
indent_size = 2
# Yml/Yaml files
[*.{yaml,yml}]
indent_size = 2
# Powershell files
[*.ps1]
indent_size = 2
# JSON files
[*.json]
indent_size = 2
# Shell scripts
[*.sh]
end_of_line = lf
[*.{cmd,bat}]
end_of_line = crlf
[*.cs]
# IDE0063: Use simple 'using' statement
csharp_prefer_simple_using_statement = true:silent
# IDE0008: Use explicit type
csharp_style_var_elsewhere = false:none
# IDE0008: Use explicit type
csharp_style_var_when_type_is_apparent = false:none
# IDE0008: Use explicit type
csharp_style_var_for_built_in_types = false:none
dotnet_diagnostic.CA1028.severity = none
dotnet_diagnostic.CA1031.severity = none
dotnet_diagnostic.CA1034.severity = none
dotnet_diagnostic.CA1303.severity = none
dotnet_diagnostic.CA1308.severity = none
dotnet_diagnostic.CA1707.severity = none
dotnet_diagnostic.CA2225.severity = none
dotnet_diagnostic.IDE0008.severity = none
dotnet_diagnostic.IDE0012.severity = none
dotnet_diagnostic.IDE0049.severity = none
dotnet_diagnostic.SA0001.severity = none
dotnet_diagnostic.SA1009.severity = none
dotnet_diagnostic.SA1025.severity = none
dotnet_diagnostic.SA1111.severity = none
dotnet_diagnostic.SA1117.severity = none
dotnet_diagnostic.SA1118.severity = none
dotnet_diagnostic.SA1119.severity = none
dotnet_diagnostic.SA1121.severity = none
dotnet_diagnostic.SA1124.severity = none
dotnet_diagnostic.SA1132.severity = none
dotnet_diagnostic.SA1201.severity = none
dotnet_diagnostic.SA1202.severity = none
dotnet_diagnostic.SA1204.severity = none
dotnet_diagnostic.SA1309.severity = none
dotnet_diagnostic.SA1310.severity = none
dotnet_diagnostic.SA1313.severity = none
dotnet_diagnostic.SA1401.severity = none
dotnet_diagnostic.SA1405.severity = none
dotnet_diagnostic.SA1413.severity = none
dotnet_diagnostic.SA1512.severity = none
dotnet_diagnostic.SA1600.severity = none
dotnet_diagnostic.SA1601.severity = none
dotnet_diagnostic.SA1602.severity = none
dotnet_diagnostic.SA1611.severity = none
dotnet_diagnostic.SA1615.severity = none
dotnet_diagnostic.SA1618.severity = none
dotnet_diagnostic.SA1623.severity = none
dotnet_diagnostic.SA1629.severity = none
dotnet_diagnostic.SA1636.severity = none
dotnet_diagnostic.SA1642.severity = none
dotnet_diagnostic.SA1649.severity = none
dotnet_diagnostic.SA1652.severity = none