-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.editorconfig
42 lines (29 loc) · 1.15 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
[*]
insert_final_newline = true
[*.cs]
# parantheses formatting
dotnet_diagnostic.SA1009.severity = none
dotnet_diagnostic.SA1111.severity = none
# 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
# 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]
# require XML documentation
dotnet_diagnostic.SA1600.severity = none
dotnet_diagnostic.CS1591.severity = none
[*.{csproj,targets,props}]
indent_style = space
indent_size = 2