-
Notifications
You must be signed in to change notification settings - Fork 2
/
.editorconfig
46 lines (31 loc) · 1.42 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
[*.cs]
# closing parenthesis should not be preceded by a space
dotnet_diagnostic.SA1009.severity = none
# prefix calls to an instance member with 'this'
dotnet_diagnostic.SA1101.severity = none
# closing parenthesis should be on line of last parameter
dotnet_diagnostic.SA1111.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
# opening and closing braces must not be written on a single line
dotnet_diagnostic.SA1502.severity = none
# elements must be documented
dotnet_diagnostic.SA1600.severity = none
dotnet_diagnostic.CS1591.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
[*Tests.cs]
# a field should not follow a method
dotnet_diagnostic.SA1201.severity = none
# static members must appear before non-static members
dotnet_diagnostic.SA1204.severity = none