mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-23 17:52:36 -04:00
100 lines
5.2 KiB
INI
100 lines
5.2 KiB
INI
root = false
|
|
|
|
[*]
|
|
charset = utf-8
|
|
end_of_line = lf
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = tab
|
|
indent_size = tab
|
|
smart_tab = true
|
|
|
|
[*.cs]
|
|
csharp_prefer_braces = false
|
|
dotnet_diagnostic.IDE0046.severity = none
|
|
dotnet_diagnostic.IDE0055.severity = none
|
|
dotnet_diagnostic.IDE0058.severity = none
|
|
dotnet_diagnostic.IDE0130.severity = none
|
|
|
|
# Convert to file-scoped namespace
|
|
csharp_style_namespace_declarations = file_scoped:warning
|
|
# Sort using and Import directives with System.* appearing first
|
|
dotnet_sort_system_directives_first = true
|
|
csharp_using_directive_placement = outside_namespace:warning
|
|
# Avoid "this." if not necessary
|
|
dotnet_style_qualification_for_field = false:suggestion
|
|
dotnet_style_qualification_for_property = false:suggestion
|
|
dotnet_style_qualification_for_method = false:suggestion
|
|
dotnet_style_qualification_for_event = false:suggestion
|
|
# Use language keywords instead of framework type names for type references
|
|
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
|
|
dotnet_style_predefined_type_for_member_access = true:suggestion
|
|
# Suggest more modern language features when available
|
|
dotnet_style_object_initializer = true:suggestion
|
|
dotnet_style_collection_initializer = true:suggestion
|
|
dotnet_style_coalesce_expression = true:suggestion
|
|
dotnet_style_null_propagation = true:suggestion
|
|
dotnet_style_explicit_tuple_names = true:suggestion
|
|
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
|
|
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
|
|
csharp_style_inlined_variable_declaration = true:suggestion
|
|
csharp_style_conditional_delegate_call = true:suggestion
|
|
dotnet_style_prefer_auto_properties = true
|
|
dotnet_style_prefer_conditional_expression_over_assignment = true
|
|
dotnet_style_prefer_conditional_expression_over_return = true
|
|
# Disable strange throw.
|
|
csharp_style_throw_expression = false:suggestion
|
|
# Forbid "var" everywhere
|
|
csharp_style_var_for_built_in_types = false:suggestion
|
|
csharp_style_var_when_type_is_apparent = false:suggestion
|
|
csharp_style_var_elsewhere = false:suggestion
|
|
# Prefer method-like constructs to have a block body
|
|
csharp_style_expression_bodied_methods = false:none
|
|
csharp_style_expression_bodied_constructors = false:none
|
|
csharp_style_expression_bodied_operators = false:none
|
|
# Prefer property-like constructs to have an expression-body
|
|
csharp_style_expression_bodied_properties = true:none
|
|
csharp_style_expression_bodied_indexers = true:none
|
|
csharp_style_expression_bodied_accessors = true:none
|
|
# Newline settings
|
|
csharp_new_line_before_open_brace = all
|
|
csharp_new_line_before_else = true
|
|
csharp_new_line_before_catch = true
|
|
csharp_new_line_before_finally = true
|
|
csharp_new_line_before_members_in_object_initializers = false
|
|
csharp_new_line_before_members_in_anonymous_types = true
|
|
# Indentation settings
|
|
csharp_indent_case_contents = true
|
|
csharp_indent_switch_labels = true
|
|
# Modifiers
|
|
dotnet_style_readonly_field = true:suggestion
|
|
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
|
|
# Naming style
|
|
dotnet_naming_symbols.privates.applicable_kinds = property,method,event,delegate
|
|
dotnet_naming_symbols.privates.applicable_accessibilities = private
|
|
dotnet_naming_style.underscore_pascal.capitalization = pascal_case
|
|
dotnet_naming_style.underscore_pascal.required_prefix = _
|
|
dotnet_naming_rule.privates_with_underscore.symbols = privates
|
|
dotnet_naming_rule.privates_with_underscore.style = underscore_pascal
|
|
dotnet_naming_rule.privates_with_underscore.severity = warning
|
|
dotnet_diagnostic.IDE1006.severity = warning
|
|
# ReSharper properties
|
|
resharper_align_multiline_binary_expressions_chain = false
|
|
resharper_csharp_empty_block_style = together_same_line
|
|
resharper_indent_nested_foreach_stmt = true
|
|
resharper_indent_nested_for_stmt = true
|
|
resharper_indent_nested_while_stmt = true
|
|
resharper_keep_existing_embedded_arrangement = false
|
|
resharper_place_accessorholder_attribute_on_same_line = true
|
|
resharper_place_simple_embedded_statement_on_same_line = false
|
|
resharper_wrap_before_arrow_with_expressions = true
|
|
resharper_xmldoc_attribute_indent = align_by_first_attribute
|
|
resharper_xmldoc_indent_child_elements = RemoveIndent
|
|
resharper_xmldoc_indent_text = RemoveIndent
|
|
# Switch on enum
|
|
dotnet_diagnostic.CS8509.severity=error # missing switch case for named enum value
|
|
dotnet_diagnostic.CS8524.severity=none # missing switch case for unnamed enum value
|
|
|
|
# Waiting for https://github.com/dotnet/roslyn/issues/44596 to get fixed.
|
|
# file_header_template = Kyoo - A portable and vast media library solution.\nCopyright (c) Kyoo.\n\nSee AUTHORS.md and LICENSE file in the project root for full license information.\n\nKyoo is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\nany later version.\n\nKyoo is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with Kyoo. If not, see <https://www.gnu.org/licenses/>.
|