-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.editorconfig
More file actions
37 lines (22 loc) · 973 Bytes
/
.editorconfig
File metadata and controls
37 lines (22 loc) · 973 Bytes
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
; 4-column space indentation
[*]
indent_style = space
[*.{cs,tt}]
indent_size = 4
dotnet_diagnostic.CA1000.severity = none
dotnet_diagnostic.CA1032.severity = none
dotnet_diagnostic.CA1303.severity = none
dotnet_diagnostic.CA1815.severity = none
dotnet_diagnostic.CA2237.severity = none
dotnet_diagnostic.SA1101.severity = none
; SA1627: Exception type names (e.g. ResultSucceedException) already convey the throwing condition — text would duplicate the type name.
dotnet_diagnostic.SA1627.severity = none
; SA1648 doesn't distinguish <inheritdoc/> (invalid on static) from <inheritdoc cref="..."/> (valid Roslyn cross-reference).
dotnet_diagnostic.SA1648.severity = none
dotnet_diagnostic.S1128.severity = error
dotnet_diagnostic.S2743.severity = none
dotnet_diagnostic.S3925.severity = none
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 2
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
indent_size = 2