-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.editorconfig
79 lines (54 loc) · 2.33 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
[*.cs]
# parantheses formatting
dotnet_diagnostic.SA1000.severity = none
dotnet_diagnostic.SA1009.severity = none
dotnet_diagnostic.SA1111.severity = none
# add trailing commas
dotnet_diagnostic.MA0007.severity = none
# format provider is missing
dotnet_diagnostic.MA0011.severity = none
# specify the parameter name in ArgumentException
dotnet_diagnostic.MA0015.severity = none
# closing square bracket must be followed by a space
dotnet_diagnostic.SA1011.severity = none
# prefix calls to an instance member with 'this'
dotnet_diagnostic.SA1101.severity = none
# A constructor should not follow a property
dotnet_diagnostic.SA1201.severity = none
# Static members should not follow non-static members
dotnet_diagnostic.SA1204.severity = none
# The 'required' modifier should appear before 'public'
dotnet_diagnostic.SA1206.severity = none
# field names must not begin with underscores
dotnet_diagnostic.SA1309.severity = none
# related to SA1309, field names must begin with a lowercase letter
dotnet_diagnostic.SA1312.severity = none
# the last statement in a multi-line initializer or list must end with a trailing comma
dotnet_diagnostic.SA1413.severity = none
# elements should not be on the same line
dotnet_diagnostic.SA1502.severity = none
# require XML documentation
dotnet_diagnostic.CS1591.severity = none
# require XML documentation
dotnet_diagnostic.SA1600.severity = none
# require emum item documentation
dotnet_diagnostic.SA1602.severity = none
# documentation for properties must begin with the accessor keywords on the property
dotnet_diagnostic.SA1623.severity = none
# all XML documentation sections must end with a period/full stop
dotnet_diagnostic.SA1629.severity = none
# every C# code file must have a standard file header
dotnet_diagnostic.SA1633.severity = none
# require standardized summary test for constructors
dotnet_diagnostic.SA1642.severity = none
# max method length
MA0051.maximum_lines_per_method = 120
[*Tests.cs]
# parameter spans multiple lines - not helpful for block strings
dotnet_diagnostic.SA1118.severity = none
# ordering rules - disabling these since it's nice to group test data
dotnet_diagnostic.SA1203.severity = none
# opening square brackets should not be preceded by a space
dotnet_diagnostic.SA1010.severity = none
# closing brace must be followed by a blank line
dotnet_diagnostic.SA1513.severity = none