forked from amantinband/throw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
51 lines (36 loc) · 1.44 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
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
# 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