-
Notifications
You must be signed in to change notification settings - Fork 94
/
.editorconfig
72 lines (50 loc) · 2.2 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
root = true
[*]
indent_style = space
indent_size = 4
end_of_line = crlf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# SA1615: Element return value should be documented.
dotnet_diagnostic.SA1615.severity = none
# SA1611: Element parameters must be documented.
dotnet_diagnostic.SA1611.severity = none
# SA1633: File must have header.
dotnet_diagnostic.SA1633.severity = none
# SA1633: Generic type parameters must be documented.
dotnet_diagnostic.SA1618.severity = none
# SA1133: Each attribute should be placed in its own set of square brackets.
dotnet_diagnostic.SA1133.severity = none
# SA1600: Elements must be documented.
dotnet_diagnostic.SA1600.severity = none
# SA1601: Partial elementes should be documented.
dotnet_diagnostic.SA1601.severity = none
# SA1313: Parameter names must begin with lower case letter.
dotnet_diagnostic.SA1313.severity = none
# SA1009: Closing parenthesis should be followed by a space.
dotnet_diagnostic.SA1009.severity = none
# SA1000: The keyword 'new' should be followed by a space.
dotnet_diagnostic.SA1000.severity = none
# SA1101: Prefix local calls with this.
dotnet_diagnostic.SA1101.severity = none
# SA1309: Field should not begin with an underscore.
dotnet_diagnostic.SA1309.severity = none
# SA1602: Enumeration items should be documented.
dotnet_diagnostic.SA1602.severity = none
# CS1591: Missing XML comment for publicly visible type or member.
dotnet_diagnostic.CS1591.severity = none
# SA1200: Using directive should appear within a namespace declaration.
dotnet_diagnostic.SA1200.severity = none
# IDE0008: Use explicit type
csharp_style_var_when_type_is_apparent = true
# IDE0130: Namespace does not match folder structure
dotnet_style_namespace_match_folder = false
# IDE0023: Use block body for operators
csharp_style_expression_bodied_operators = when_on_single_line
# IDE0130: Namespace does not match folder structure
dotnet_diagnostic.IDE0130.severity = none
# SA1642: Constructor summary documentation should begin with standard text
dotnet_diagnostic.SA1642.severity = none
# SA1516: Elements should be separated by blank line
dotnet_diagnostic.SA1516.severity = none