-
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove producer without options (#223)
* Remove option-less producer as it seems to be useless
- Loading branch information
1 parent
a0e25a4
commit 27d152f
Showing
29 changed files
with
266 additions
and
582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,84 @@ | ||
root = true | ||
|
||
[*] | ||
|
||
indent_style = space | ||
max_line_length = 160 | ||
brace_style = end_of_line | ||
|
||
# IntelliJ IDEA properties | ||
ij_any_block_brace_style = end_of_line | ||
|
||
# Microsoft .NET properties | ||
csharp_indent_braces = false | ||
csharp_new_line_before_members_in_object_initializers = false | ||
csharp_new_line_before_open_brace = control_blocks | ||
csharp_preferred_modifier_order = protected, private, public, internal, file, new, override, abstract, virtual, sealed, readonly, static, extern, unsafe, volatile, async, required:suggestion | ||
csharp_style_expression_bodied_accessors = true:suggestion | ||
csharp_style_expression_bodied_constructors = false:none | ||
csharp_style_expression_bodied_methods = true:none | ||
csharp_style_expression_bodied_properties = true:suggestion | ||
csharp_using_directive_placement = outside_namespace | ||
csharp_style_var_for_built_in_types = true | ||
csharp_sort_usings_with_system_first = true | ||
csharp_default_private_modifier = implicit | ||
csharp_default_internal_modifier = implicit | ||
csharp_method_or_operator_body = expression_body | ||
csharp_local_function_body = expression_body | ||
csharp_constructor_or_destructor_body = expression_body | ||
csharp_accessor_owner_body = expression_body | ||
csharp_namespace_body = file_scoped | ||
csharp_use_heuristics_for_body_style = false | ||
csharp_force_attribute_style = separate | ||
csharp_object_creation_when_type_evident = tartget_typed | ||
csharp_object_creation_when_type_not_evident = tartget_typed | ||
csharp_default_value_when_type_evident = default_literal | ||
csharp_default_value_when_type_not_evident = default_literal | ||
csharp_null_checking_pattern_style = not_null_pattern | ||
csharp_remove_blank_lines_near_braces_in_declarations = true | ||
csharp_blank_lines_after_file_scoped_namespace_directive = 1 | ||
csharp_blank_lines_around_type = 1 | ||
csharp_blank_lines_inside_type = 0 | ||
csharp_blank_lines_around_single_line_auto_property = 0 | ||
csharp_blank_lines_around_invocable = 1 | ||
csharp_remove_blank_lines_near_braces_in_code = true | ||
csharp_blank_lines_before_control_transfer_statements = 1 | ||
csharp_space_around_binary_operator = true | ||
csharp_space_after_unary_operator = false | ||
csharp_indent_nested_usings_stmt = true | ||
csharp_int_align_parameters = true | ||
csharp_int_align_variables = true | ||
csharp_int_align_assignments = true | ||
csharp_int_align_nested_ternary = true | ||
csharp_int_align_invocations = false | ||
csharp_int_align_comments = true | ||
csharp_int_align_switch_sections = true | ||
csharp_int_align_switch_expressions = true | ||
csharp_builtin_type_reference_style = use_keyword | ||
csharp_place_expr_method_on_single_line = if_owner_is_single_line | ||
csharp_place_expr_property_on_single_line = if_owner_is_single_line | ||
csharp_place_expr_accessor_on_single_line = if_owner_is_single_line | ||
csharp_wrap_before_arrow_with_expressions = true | ||
csharp_wrap_before_first_type_parameter_constraint = true | ||
csharp_wrap_multiple_type_parameter_constraints_style = chop_if_long | ||
csharp_wrap_before_type_parameter_langle = true | ||
csharp_wrap_before_extends_colon = true | ||
csharp_wrap_extends_list_style = chop_if_long | ||
csharp_keep_existing_arrangement = false | ||
csharp_place_simple_blocks_on_single_line = true | ||
csharp_place_simple_method_on_single_line = false | ||
csharp_max_enum_members_on_line = 0 | ||
csharp_new_line_before_catch = false | ||
csharp_new_line_before_finally = false | ||
csharp_place_simple_case_statement_on_same_line = true | ||
csharp_wrap_before_ternary_opsigns = true | ||
csharp_empty_block_style = together | ||
csharp_wrap_parameters_style = chop_if_long | ||
csharp_max_formal_parameters_on_line = 5 | ||
csharp_place_constructor_initializer_on_same_line = false | ||
|
||
# ReSharper properties | ||
resharper_blank_lines_after_control_transfer_statements = 1 | ||
resharper_blank_lines_after_multiline_statements = 1 | ||
resharper_blank_lines_around_single_line_auto_property = 0 | ||
resharper_blank_lines_around_single_line_field = 0 | ||
resharper_blank_lines_before_control_transfer_statements = 0 | ||
resharper_csharp_align_multiline_binary_expressions_chain = true | ||
resharper_csharp_blank_lines_around_single_line_field = 0 | ||
resharper_csharp_blank_lines_around_single_line_invocable = 1 | ||
resharper_csharp_empty_block_style = together | ||
resharper_csharp_int_align_comments = true | ||
resharper_csharp_max_line_length = 180 | ||
resharper_csharp_other_braces = end_of_line | ||
resharper_csharp_wrap_after_declaration_lpar = true | ||
resharper_csharp_wrap_arguments_style = chop_if_long | ||
resharper_csharp_wrap_before_binary_opsign = true | ||
resharper_csharp_wrap_before_declaration_rpar = true | ||
resharper_csharp_wrap_parameters_style = chop_if_long | ||
resharper_csharp_wrap_ternary_expr_style = chop_if_long | ||
resharper_instance_members_qualify_declared_in = | ||
resharper_int_align_assignments = true | ||
resharper_int_align_fields = true | ||
resharper_int_align_parameters = true | ||
resharper_int_align_properties = true | ||
resharper_max_attribute_length_for_same_line = 80 | ||
resharper_nested_ternary_style = expanded | ||
resharper_outdent_binary_ops = true | ||
resharper_place_expr_method_on_single_line = false | ||
resharper_place_expr_property_on_single_line = true | ||
resharper_place_field_attribute_on_same_line = false | ||
resharper_place_simple_embedded_statement_on_same_line = true | ||
resharper_space_within_single_line_array_initializer_braces = true | ||
resharper_use_heuristics_for_body_style = true | ||
resharper_wrap_object_and_collection_initializer_style = chop_if_long | ||
resharper_wrap_parameters_style = wrap_if_long | ||
resharper_wrap_ternary_expr_style = chop_if_long | ||
|
||
file_header_template = Copyright (C) Ubiquitous AS. All rights reserved\nLicensed under the Apache License, Version 2.0. | ||
file_header_template = Copyright (C) Ubiquitous AS.All rights reserved\nLicensed under the Apache License, Version 2.0. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.