Skip to content

Commit 06ee2fd

Browse files
committed
Merge branch 'release/2.0.0'
2 parents 74772bd + e04cf78 commit 06ee2fd

39 files changed

Lines changed: 802 additions & 172 deletions

.editorconfig

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_size = 4
6+
indent_style = space
7+
insert_final_newline = true
8+
trim_trailing_whitespace = true
9+
10+
[.cs]
11+
12+
13+
# This may not be needed, but kept for compatibility with VS
14+
[*.{sln,csproj}]
15+
end_of_line = crlf
16+
17+
# Markdown files allows the use of trailing spaces to denote
18+
# a line break
19+
[*.md]
20+
trim_trailing_whitespace = false
21+
22+
# Batch and powershell files requires crlf to be
23+
# used as the line ending.
24+
# Powershell also requires UTF-8 with BOM encoding
25+
# to function if utf8 characters is used (maibe batch files as well)
26+
[*.{bat,ps1}]
27+
charset = utf-8-bom
28+
end_of_line = crlf
29+
30+
# Shell scripts requires the use of lf line endings
31+
# to be able to run.
32+
[*.sh]
33+
end_of_line = lf
34+
35+
# The visual studio code file
36+
# requires the use of crlf line endings
37+
[tasks.json]
38+
end_of_line = crlf

src/.editorconfig

Lines changed: 282 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,282 @@
1+
[*.csproj]
2+
indent_size = 2
3+
4+
# C# files
5+
[*.cs]
6+
7+
#### Core EditorConfig Options ####
8+
9+
# Indentation and spacing
10+
indent_size = 4
11+
indent_style = space
12+
tab_width = 4
13+
14+
# New line preferences
15+
end_of_line = crlf
16+
insert_final_newline = true
17+
18+
#### .NET Coding Conventions ####
19+
20+
# Organize usings
21+
dotnet_separate_import_directive_groups = true
22+
dotnet_sort_system_directives_first = true
23+
file_header_template = unset
24+
25+
# this. and Me. preferences
26+
dotnet_style_qualification_for_event = false:warning
27+
dotnet_style_qualification_for_field = false:warning
28+
dotnet_style_qualification_for_method = false:warning
29+
dotnet_style_qualification_for_property = false:warning
30+
31+
# Language keywords vs BCL types preferences
32+
dotnet_style_predefined_type_for_locals_parameters_members = true:warning
33+
dotnet_style_predefined_type_for_member_access = true:warning
34+
35+
# Parentheses preferences
36+
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
37+
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
38+
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
39+
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
40+
41+
# Modifier preferences
42+
dotnet_style_require_accessibility_modifiers = for_non_interface_members:warning
43+
44+
# Expression-level preferences
45+
dotnet_style_coalesce_expression = true:suggestion
46+
dotnet_style_collection_initializer = true:suggestion
47+
dotnet_style_explicit_tuple_names = true:suggestion
48+
dotnet_style_null_propagation = true:suggestion
49+
dotnet_style_object_initializer = true:suggestion
50+
dotnet_style_operator_placement_when_wrapping = beginning_of_line
51+
dotnet_style_prefer_auto_properties = true:silent
52+
dotnet_style_prefer_compound_assignment = true:suggestion
53+
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
54+
dotnet_style_prefer_conditional_expression_over_return = true:silent
55+
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
56+
dotnet_style_prefer_inferred_tuple_names = true:suggestion
57+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
58+
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
59+
dotnet_style_prefer_simplified_interpolation = true:suggestion
60+
61+
# Field preferences
62+
dotnet_style_readonly_field = true:suggestion
63+
64+
# Parameter preferences
65+
dotnet_code_quality_unused_parameters = all:suggestion
66+
67+
#### C# Coding Conventions ####
68+
69+
# var preferences
70+
csharp_style_var_elsewhere = false:silent
71+
csharp_style_var_for_built_in_types = false:silent
72+
csharp_style_var_when_type_is_apparent = false:silent
73+
74+
# Expression-bodied members
75+
csharp_style_expression_bodied_accessors = true:silent
76+
csharp_style_expression_bodied_constructors = false:silent
77+
csharp_style_expression_bodied_indexers = true:silent
78+
csharp_style_expression_bodied_lambdas = true:silent
79+
csharp_style_expression_bodied_local_functions = false:silent
80+
csharp_style_expression_bodied_methods = false:silent
81+
csharp_style_expression_bodied_operators = false:silent
82+
csharp_style_expression_bodied_properties = true:silent
83+
84+
# Pattern matching preferences
85+
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
86+
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
87+
csharp_style_prefer_switch_expression = true:suggestion
88+
89+
# Null-checking preferences
90+
csharp_style_conditional_delegate_call = true:suggestion
91+
92+
# Modifier preferences
93+
csharp_prefer_static_local_function = true:suggestion
94+
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:silent
95+
96+
# Code-block preferences
97+
csharp_prefer_braces = true:silent
98+
csharp_prefer_simple_using_statement = true:suggestion
99+
100+
# Expression-level preferences
101+
csharp_prefer_simple_default_expression = true:suggestion
102+
csharp_style_deconstructed_variable_declaration = true:suggestion
103+
csharp_style_inlined_variable_declaration = true:suggestion
104+
csharp_style_pattern_local_over_anonymous_function = true:suggestion
105+
csharp_style_prefer_index_operator = true:suggestion
106+
csharp_style_prefer_range_operator = true:suggestion
107+
csharp_style_throw_expression = true:suggestion
108+
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
109+
csharp_style_unused_value_expression_statement_preference = discard_variable:silent
110+
111+
# 'using' directive preferences
112+
csharp_using_directive_placement = outside_namespace:warning
113+
114+
#### C# Formatting Rules ####
115+
116+
# New line preferences
117+
csharp_new_line_before_catch = true
118+
csharp_new_line_before_else = true
119+
csharp_new_line_before_finally = true
120+
csharp_new_line_before_members_in_anonymous_types = true
121+
csharp_new_line_before_members_in_object_initializers = true
122+
csharp_new_line_before_open_brace = all
123+
csharp_new_line_between_query_expression_clauses = true
124+
125+
# Indentation preferences
126+
csharp_indent_block_contents = true
127+
csharp_indent_braces = false
128+
csharp_indent_case_contents = true
129+
csharp_indent_case_contents_when_block = false
130+
csharp_indent_labels = flush_left
131+
csharp_indent_switch_labels = true
132+
133+
# Space preferences
134+
csharp_space_after_cast = false
135+
csharp_space_after_colon_in_inheritance_clause = true
136+
csharp_space_after_comma = true
137+
csharp_space_after_dot = false
138+
csharp_space_after_keywords_in_control_flow_statements = true
139+
csharp_space_after_semicolon_in_for_statement = true
140+
csharp_space_around_binary_operators = before_and_after
141+
csharp_space_around_declaration_statements = false
142+
csharp_space_before_colon_in_inheritance_clause = true
143+
csharp_space_before_comma = false
144+
csharp_space_before_dot = false
145+
csharp_space_before_open_square_brackets = false
146+
csharp_space_before_semicolon_in_for_statement = false
147+
csharp_space_between_empty_square_brackets = false
148+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
149+
csharp_space_between_method_call_name_and_opening_parenthesis = false
150+
csharp_space_between_method_call_parameter_list_parentheses = false
151+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
152+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
153+
csharp_space_between_method_declaration_parameter_list_parentheses = false
154+
csharp_space_between_parentheses = false
155+
csharp_space_between_square_brackets = false
156+
157+
# Wrapping preferences
158+
csharp_preserve_single_line_blocks = true
159+
csharp_preserve_single_line_statements = false
160+
161+
#### Naming styles ####
162+
163+
# Naming rules
164+
165+
dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
166+
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
167+
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i
168+
169+
dotnet_naming_rule.types_should_be_pascal_case.severity = warning
170+
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
171+
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case
172+
173+
dotnet_naming_rule.method_should_be_pascal_case.severity = warning
174+
dotnet_naming_rule.method_should_be_pascal_case.symbols = method
175+
dotnet_naming_rule.method_should_be_pascal_case.style = pascal_case
176+
177+
dotnet_naming_rule.public_or_protected_field_should_be_pascal_case.severity = warning
178+
dotnet_naming_rule.public_or_protected_field_should_be_pascal_case.symbols = public_or_protected_field
179+
dotnet_naming_rule.public_or_protected_field_should_be_pascal_case.style = pascal_case
180+
181+
dotnet_naming_rule.private_or_internal_static_field_should_be_pascal_case.severity = warning
182+
dotnet_naming_rule.private_or_internal_static_field_should_be_pascal_case.symbols = private_or_internal_static_field
183+
dotnet_naming_rule.private_or_internal_static_field_should_be_pascal_case.style = pascal_case
184+
185+
dotnet_naming_rule.internal_field_should_be_camelcase.severity = warning
186+
dotnet_naming_rule.internal_field_should_be_camelcase.symbols = internal_field
187+
dotnet_naming_rule.internal_field_should_be_camelcase.style = camelcase
188+
189+
dotnet_naming_rule.private_field_should_be_camelcase_with_underscore.severity = warning
190+
dotnet_naming_rule.private_field_should_be_camelcase_with_underscore.symbols = private_field
191+
dotnet_naming_rule.private_field_should_be_camelcase_with_underscore.style = camelcase_with_underscore
192+
193+
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
194+
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
195+
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
196+
197+
dotnet_naming_rule.private_const_fields_should_be_all_upper_case.severity = warning
198+
dotnet_naming_rule.private_const_fields_should_be_all_upper_case.symbols = private_const_fields
199+
dotnet_naming_rule.private_const_fields_should_be_all_upper_case.style = upper_case
200+
201+
# Symbol specifications
202+
203+
dotnet_naming_symbols.interface.applicable_kinds = interface
204+
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
205+
dotnet_naming_symbols.interface.required_modifiers =
206+
207+
dotnet_naming_symbols.method.applicable_kinds = method
208+
dotnet_naming_symbols.method.applicable_accessibilities = public
209+
dotnet_naming_symbols.method.required_modifiers =
210+
211+
dotnet_naming_symbols.public_or_protected_field.applicable_kinds = field
212+
dotnet_naming_symbols.public_or_protected_field.applicable_accessibilities = public, protected
213+
dotnet_naming_symbols.public_or_protected_field.required_modifiers =
214+
215+
dotnet_naming_symbols.internal_field.applicable_kinds = field
216+
dotnet_naming_symbols.internal_field.applicable_accessibilities = internal
217+
dotnet_naming_symbols.internal_field.required_modifiers =
218+
219+
dotnet_naming_symbols.private_field.applicable_kinds = field
220+
dotnet_naming_symbols.private_field.applicable_accessibilities = private, private_protected
221+
dotnet_naming_symbols.private_field.required_modifiers =
222+
223+
dotnet_naming_symbols.private_or_internal_static_field.applicable_kinds = field
224+
dotnet_naming_symbols.private_or_internal_static_field.applicable_accessibilities = internal, private, private_protected
225+
dotnet_naming_symbols.private_or_internal_static_field.required_modifiers = static
226+
227+
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
228+
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
229+
dotnet_naming_symbols.types.required_modifiers =
230+
231+
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
232+
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
233+
dotnet_naming_symbols.non_field_members.required_modifiers =
234+
235+
dotnet_naming_symbols.private_const_fields.applicable_kinds = field
236+
dotnet_naming_symbols.private_const_fields.applicable_accessibilities = private
237+
dotnet_naming_symbols.private_const_fields.required_modifiers = const
238+
239+
# Naming styles
240+
241+
dotnet_naming_style.pascal_case.required_prefix =
242+
dotnet_naming_style.pascal_case.required_suffix =
243+
dotnet_naming_style.pascal_case.word_separator =
244+
dotnet_naming_style.pascal_case.capitalization = pascal_case
245+
246+
dotnet_naming_style.begins_with_i.required_prefix = I
247+
dotnet_naming_style.begins_with_i.required_suffix =
248+
dotnet_naming_style.begins_with_i.word_separator =
249+
dotnet_naming_style.begins_with_i.capitalization = pascal_case
250+
251+
dotnet_naming_style.camelcase.required_prefix =
252+
dotnet_naming_style.camelcase.required_suffix =
253+
dotnet_naming_style.camelcase.word_separator =
254+
dotnet_naming_style.camelcase.capitalization = camel_case
255+
256+
dotnet_naming_style.camelcase_with_underscore.required_prefix = _
257+
dotnet_naming_style.camelcase_with_underscore.required_suffix =
258+
dotnet_naming_style.camelcase_with_underscore.word_separator =
259+
dotnet_naming_style.camelcase_with_underscore.capitalization = camel_case
260+
261+
dotnet_naming_style.upper_case.required_prefix =
262+
dotnet_naming_style.upper_case.required_suffix =
263+
dotnet_naming_style.upper_case.word_separator =
264+
dotnet_naming_style.upper_case.capitalization = all_upper
265+
266+
# other Rules:
267+
268+
# fields should not begin with underscore
269+
dotnet_diagnostic.SA1309.severity = none
270+
271+
# files should have a header
272+
dotnet_diagnostic.SA1633.severity = none
273+
274+
# use this.
275+
dotnet_diagnostic.SA1101.severity = none
276+
277+
# do not document internal members
278+
resharper_internal_or_private_member_not_documented_highlighting = none
279+
280+
# do not enforce static
281+
resharper_member_can_be_made_static_local_highlighting = none
282+
resharper_member_can_be_made_static_global_highlighting = none

0 commit comments

Comments
 (0)