-
Notifications
You must be signed in to change notification settings - Fork 1
/
.editorconfig
91 lines (80 loc) · 3.32 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
root = true
[*]
end_of_line = crlf
[*.cs]
indent_style = tab
indent_size = 3
csharp_style_conditional_delegate_call = true:error
csharp_style_expression_bodied_accessors = true:error
csharp_style_expression_bodied_constructors = true:error
csharp_style_expression_bodied_indexers = true:error
csharp_style_expression_bodied_methods = true:error
csharp_style_expression_bodied_operators = true:error
csharp_style_expression_bodied_properties = true:error
csharp_style_inlined_variable_declaration = true:error
csharp_style_pattern_matching_over_as_with_null_check = true:error
csharp_style_pattern_matching_over_is_with_cast_check = true:error
csharp_style_throw_expression = true:error
csharp_style_var_elsewhere = true:error
csharp_style_var_for_built_in_types = true:error
csharp_style_var_when_type_is_apparent = true:error
dotnet_sort_system_directives_first = false
dotnet_style_collection_initializer = true:error
dotnet_style_explicit_tuple_names = true:error
dotnet_style_null_propagation = true:error
dotnet_style_object_initializer = true:error
dotnet_style_predefined_type_for_locals_parameters_members = true:error
dotnet_style_qualification_for_event = true:error
dotnet_style_qualification_for_field = true:error
dotnet_style_qualification_for_method = true:error
dotnet_style_qualification_for_property = true:error
# CA1014: Mark assemblies with CLSCompliantAttribute
dotnet_diagnostic.CA1014.severity = none
# CA1303: Do not pass literals as localized parameters
dotnet_diagnostic.CA1303.severity = none
# CA1305: Specify IFormatProvider
dotnet_diagnostic.CA1305.severity = none
# CA1307: Specify StringComparison
dotnet_diagnostic.CA1307.severity = none
# CA1720: Identifier contains type name
dotnet_diagnostic.CA1720.severity = suggestion
# CA1724
dotnet_diagnostic.CA1724.severity = none
# CS1591: Missing XML comment for publicly visible type or member
dotnet_diagnostic.CS1591.severity = none
# NUnit analyzer settings
dotnet_diagnostic.NUnit2001.severity=error
dotnet_diagnostic.NUnit2002.severity=error
dotnet_diagnostic.NUnit2003.severity=error
dotnet_diagnostic.NUnit2004.severity=error
dotnet_diagnostic.NUnit2005.severity=error
dotnet_diagnostic.NUnit2006.severity=error
dotnet_diagnostic.NUnit2007.severity=error
dotnet_diagnostic.NUnit2008.severity=error
dotnet_diagnostic.NUnit2009.severity=error
dotnet_diagnostic.NUnit2010.severity=error
dotnet_diagnostic.NUnit2011.severity=error
dotnet_diagnostic.NUnit2012.severity=error
dotnet_diagnostic.NUnit2013.severity=error
dotnet_diagnostic.NUnit2014.severity=error
dotnet_diagnostic.NUnit2015.severity=error
dotnet_diagnostic.NUnit2016.severity=error
dotnet_diagnostic.NUnit2017.severity=error
dotnet_diagnostic.NUnit2018.severity=error
dotnet_diagnostic.NUnit2019.severity=error
dotnet_diagnostic.NUnit2027.severity=error
dotnet_diagnostic.NUnit2030.severity=error
dotnet_diagnostic.NUnit2028.severity=error
dotnet_diagnostic.NUnit2031.severity=error
dotnet_diagnostic.NUnit2032.severity=error
dotnet_diagnostic.NUnit2033.severity=error
dotnet_diagnostic.NUnit2034.severity=error
dotnet_diagnostic.NUnit2035.severity=error
dotnet_diagnostic.NUnit2036.severity=error
dotnet_diagnostic.NUnit2037.severity=error
dotnet_diagnostic.NUnit2038.severity=error
dotnet_diagnostic.NUnit2039.severity=error
dotnet_diagnostic.NUnit2042.severity=error
dotnet_diagnostic.NUnit2043.severity=error
[*.xml]
indent_style = tab