generated from wayfair-incubator/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.editorconfig
28 lines (19 loc) · 988 Bytes
/
.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
[*.cs]
# prefix calls to an instance member with 'this'
dotnet_diagnostic.SA1101.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
# 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