-
Notifications
You must be signed in to change notification settings - Fork 25
/
.editorconfig
52 lines (35 loc) · 1.73 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
[*.cs]
# SA1204: Static elements must appear before instance elements
dotnet_diagnostic.SA1204.severity = none
# SA1201: Elements must appear in the correct order
dotnet_diagnostic.SA1201.severity = silent
# SA1101: Prefix local calls with this
dotnet_diagnostic.SA1101.severity = silent
# Default severity for analyzer diagnostics with category 'StyleCop.CSharp.ReadabilityRules'
dotnet_analyzer_diagnostic.category-StyleCop.CSharp.ReadabilityRules.severity = silent
# SA1202: Elements must be ordered by access
dotnet_diagnostic.SA1202.severity = silent
# SA1614: Element parameter documentation must have text
dotnet_diagnostic.SA1614.severity = silent
# SA1403: File may only contain a single namespace
dotnet_diagnostic.SA1403.severity = silent
# SA1200: Using directives must be placed correctly
dotnet_diagnostic.SA1200.severity = silent
# SA1625: Element documentation must not be copied and pasted
dotnet_diagnostic.SA1625.severity = silent
# SA1401: Fields must be private
dotnet_diagnostic.SA1401.severity = silent
# SA1652: Enable XML documentation output
dotnet_diagnostic.SA1652.severity = silent
# SA1611: Element parameters must be documented
dotnet_diagnostic.SA1611.severity = silent
# SA1009: Closing parenthesis must be spaced correctly
dotnet_diagnostic.SA1009.severity = silent
# SA1214: Readonly fields must appear before non-readonly fields
dotnet_diagnostic.SA1214.severity = none
# SA1604: Element documentation must have summary
dotnet_diagnostic.SA1604.severity = none
# CS0252: 可能非有意的引用比较;左侧需要强制转换
dotnet_diagnostic.CS0252.severity = none
# Default severity for all analyzer diagnostics
dotnet_analyzer_diagnostic.severity = none