Skip to content

Commit 5fea240

Browse files
authored
Merge pull request #59 from brentmaxwell/develop
Develop
2 parents 04e007f + 3b61d2b commit 5fea240

File tree

218 files changed

+6301
-7365
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+6301
-7365
lines changed

LtAmpDotNet/.editorconfig

+153-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,156 @@
11
[*.cs]
22

33
# IDE0063: Use simple 'using' statement
4-
csharp_prefer_simple_using_statement = false
4+
csharp_prefer_simple_using_statement = false:suggestion
5+
csharp_using_directive_placement = outside_namespace:silent
6+
csharp_prefer_braces = true:silent
7+
csharp_style_namespace_declarations = block_scoped:silent
8+
csharp_style_prefer_method_group_conversion = true:silent
9+
csharp_style_prefer_top_level_statements = true:silent
10+
csharp_style_prefer_primary_constructors = false:suggestion
11+
csharp_style_expression_bodied_methods = false:silent
12+
csharp_style_expression_bodied_constructors = false:silent
13+
csharp_style_expression_bodied_operators = false:silent
14+
csharp_style_expression_bodied_properties = true:silent
15+
csharp_indent_labels = one_less_than_current
16+
csharp_style_expression_bodied_indexers = true:silent
17+
csharp_style_expression_bodied_accessors = true:silent
18+
csharp_style_expression_bodied_lambdas = true:silent
19+
csharp_style_expression_bodied_local_functions = false:silent
20+
csharp_style_throw_expression = true:suggestion
21+
csharp_style_prefer_null_check_over_type_check = true:suggestion
22+
csharp_prefer_simple_default_expression = true:suggestion
23+
csharp_style_prefer_local_over_anonymous_function = true:suggestion
24+
csharp_style_prefer_index_operator = true:suggestion
25+
csharp_style_prefer_range_operator = true:suggestion
26+
csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
27+
csharp_style_prefer_tuple_swap = true:suggestion
28+
csharp_style_prefer_utf8_string_literals = true:suggestion
29+
csharp_style_inlined_variable_declaration = true:suggestion
30+
csharp_style_deconstructed_variable_declaration = true:suggestion
31+
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
32+
csharp_style_unused_value_expression_statement_preference = discard_variable:silent
33+
csharp_prefer_static_local_function = true:suggestion
34+
csharp_style_prefer_readonly_struct = true:suggestion
35+
csharp_style_prefer_readonly_struct_member = true:suggestion
36+
csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
37+
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
38+
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
39+
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent
40+
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true:silent
41+
csharp_style_conditional_delegate_call = true:suggestion
42+
csharp_style_prefer_switch_expression = true:suggestion
43+
csharp_style_prefer_pattern_matching = true:silent
44+
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
45+
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
46+
csharp_style_prefer_not_pattern = true:suggestion
47+
csharp_style_prefer_extended_property_pattern = true:suggestion
48+
csharp_style_var_for_built_in_types = false:silent
49+
csharp_style_var_when_type_is_apparent = false:silent
50+
csharp_style_var_elsewhere = false:silent
51+
52+
[*.{cs,vb}]
53+
#### Naming styles ####
54+
55+
# Naming rules
56+
57+
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
58+
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
59+
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
60+
61+
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
62+
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
63+
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
64+
65+
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
66+
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
67+
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
68+
69+
# Symbol specifications
70+
71+
dotnet_naming_symbols.interface.applicable_kinds = interface
72+
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
73+
dotnet_naming_symbols.interface.required_modifiers =
74+
75+
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
76+
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
77+
dotnet_naming_symbols.types.required_modifiers =
78+
79+
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
80+
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
81+
dotnet_naming_symbols.non_field_members.required_modifiers =
82+
83+
# Define the 'private_fields' symbol group:
84+
dotnet_naming_symbols.private_fields.applicable_kinds = field
85+
dotnet_naming_symbols.private_fields.applicable_accessibilities = private
86+
87+
# Define the 'private_static_fields' symbol group
88+
dotnet_naming_symbols.private_static_fields.applicable_kinds = field
89+
dotnet_naming_symbols.private_static_fields.applicable_accessibilities = private
90+
dotnet_naming_symbols.private_static_fields.required_modifiers = static
91+
92+
# Define the 'underscored' naming style
93+
dotnet_naming_style.underscored.capitalization = pascal_case
94+
dotnet_naming_style.underscored.required_prefix = _
95+
96+
# Define the 'private_fields_underscored' naming rule
97+
dotnet_naming_rule.private_fields_underscored.symbols = private_fields
98+
dotnet_naming_rule.private_fields_underscored.style = underscored
99+
dotnet_naming_rule.private_fields_underscored.severity = silent
100+
101+
# Define the 'private_static_fields_none' naming rule
102+
dotnet_naming_rule.private_static_fields_none.symbols = private_static_fields
103+
dotnet_naming_rule.private_static_fields_none.style = underscored
104+
dotnet_naming_rule.private_static_fields_none.severity = silent
105+
106+
# Naming styles
107+
108+
dotnet_naming_style.begins_with_i.required_prefix = I
109+
dotnet_naming_style.begins_with_i.required_suffix =
110+
dotnet_naming_style.begins_with_i.word_separator =
111+
dotnet_naming_style.begins_with_i.capitalization = pascal_case
112+
113+
dotnet_naming_style.pascal_case.required_prefix =
114+
dotnet_naming_style.pascal_case.required_suffix =
115+
dotnet_naming_style.pascal_case.word_separator =
116+
dotnet_naming_style.pascal_case.capitalization = pascal_case
117+
118+
dotnet_naming_style.pascal_case.required_prefix =
119+
dotnet_naming_style.pascal_case.required_suffix =
120+
dotnet_naming_style.pascal_case.word_separator =
121+
dotnet_naming_style.pascal_case.capitalization = pascal_case
122+
dotnet_style_operator_placement_when_wrapping = beginning_of_line
123+
tab_width = 4
124+
indent_size = 4
125+
end_of_line = crlf
126+
dotnet_style_coalesce_expression = true:suggestion
127+
dotnet_style_null_propagation = true:suggestion
128+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
129+
dotnet_style_prefer_auto_properties = true:silent
130+
dotnet_style_object_initializer = true:suggestion
131+
dotnet_style_collection_initializer = true:suggestion
132+
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
133+
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
134+
dotnet_style_prefer_conditional_expression_over_return = true:silent
135+
dotnet_style_explicit_tuple_names = true:suggestion
136+
dotnet_style_prefer_inferred_tuple_names = true:suggestion
137+
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
138+
dotnet_style_prefer_compound_assignment = true:suggestion
139+
dotnet_style_prefer_simplified_interpolation = true:suggestion
140+
dotnet_style_prefer_collection_expression = when_types_loosely_match:suggestion
141+
dotnet_style_namespace_match_folder = true:suggestion
142+
dotnet_style_readonly_field = true:suggestion
143+
dotnet_style_predefined_type_for_locals_parameters_members = true:silent
144+
dotnet_style_predefined_type_for_member_access = true:silent
145+
dotnet_style_require_accessibility_modifiers = for_non_interface_members:silent
146+
dotnet_style_allow_multiple_blank_lines_experimental = true:silent
147+
dotnet_style_allow_statement_immediately_after_block_experimental = true:silent
148+
dotnet_code_quality_unused_parameters = all:suggestion
149+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
150+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
151+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
152+
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
153+
dotnet_style_qualification_for_field = false:silent
154+
dotnet_style_qualification_for_property = false:silent
155+
dotnet_style_qualification_for_method = false:silent
156+
dotnet_style_qualification_for_event = false:silent
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\net.thebrent.dotnet.helpers\Collections\EnumerableExtensions.cs
2+
C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\net.thebrent.dotnet.helpers\Collections\ObservableDictionary.cs
3+
C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\net.thebrent.dotnet.helpers\Collections\ObservableKeyedCollection.cs
4+
C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\net.thebrent.dotnet.helpers\ExecutableDictionary.cs
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\.sonarqube\out\0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<SonarProjectConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.sonarsource.com/msbuild/analyzer/2021/1">
3+
<AnalysisConfigPath>C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\.sonarqube\conf\SonarQubeAnalysisConfig.xml</AnalysisConfigPath>
4+
<ProjectPath>C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\net.thebrent.dotnet.helpers\net.thebrent.dotnet.helpers.csproj</ProjectPath>
5+
<FilesToAnalyzePath>C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\.sonarqube\conf\0\FilesToAnalyze.txt</FilesToAnalyzePath>
6+
<OutPath>C:\Users\brent\OneDrive\Projects\FenderTone\LtAmp\LtAmpDotNet\.sonarqube\out\0</OutPath>
7+
<ProjectType>Product</ProjectType>
8+
<TargetFramework>net8.0</TargetFramework>
9+
</SonarProjectConfig>

0 commit comments

Comments
 (0)