83 lines
2.7 KiB
INI
83 lines
2.7 KiB
INI
# EditorConfig helps maintain consistent coding styles
|
|
# https://editorconfig.org
|
|
|
|
root = true
|
|
|
|
[*]
|
|
indent_style = space
|
|
indent_size = 4
|
|
end_of_line = crlf
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
|
|
[*.{json,yml,yaml}]
|
|
indent_size = 2
|
|
|
|
[*.md]
|
|
trim_trailing_whitespace = false
|
|
|
|
[*.{cs,razor}]
|
|
# C# and Razor formatting
|
|
indent_size = 4
|
|
dotnet_sort_system_directives_first = true
|
|
dotnet_separate_import_directive_groups = false
|
|
|
|
# Naming conventions
|
|
dotnet_naming_rule.public_members_must_be_pascal_case.symbols = public_symbols
|
|
dotnet_naming_rule.public_members_must_be_pascal_case.style = pascal_case_style
|
|
dotnet_naming_rule.public_members_must_be_pascal_case.severity = warning
|
|
|
|
dotnet_naming_symbols.public_symbols.applicable_kinds = property,method,field,event,delegate,class,struct,interface,enum
|
|
dotnet_naming_symbols.public_symbols.applicable_accessibilities = public,internal,protected,protected_internal
|
|
|
|
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
|
|
|
|
# Private fields with underscore prefix
|
|
dotnet_naming_rule.private_fields_should_have_prefix.symbols = private_fields
|
|
dotnet_naming_rule.private_fields_should_have_prefix.style = underscore_prefix
|
|
dotnet_naming_rule.private_fields_should_have_prefix.severity = suggestion
|
|
|
|
dotnet_naming_symbols.private_fields.applicable_kinds = field
|
|
dotnet_naming_symbols.private_fields.applicable_accessibilities = private
|
|
|
|
dotnet_naming_style.underscore_prefix.capitalization = camel_case
|
|
dotnet_naming_style.underscore_prefix.required_prefix = _
|
|
|
|
# Code style preferences
|
|
csharp_style_var_for_built_in_types = true:suggestion
|
|
csharp_style_var_when_type_is_apparent = true:suggestion
|
|
csharp_style_var_elsewhere = true:suggestion
|
|
|
|
csharp_prefer_braces = true:warning
|
|
csharp_prefer_simple_using_statement = true:suggestion
|
|
csharp_style_prefer_switch_expression = true:suggestion
|
|
csharp_style_prefer_pattern_matching = true:suggestion
|
|
csharp_style_prefer_not_pattern = true:suggestion
|
|
|
|
# Expression-level preferences
|
|
csharp_style_expression_bodied_methods = when_on_single_line:suggestion
|
|
csharp_style_expression_bodied_properties = when_on_single_line:suggestion
|
|
csharp_style_expression_bodied_accessors = when_on_single_line:suggestion
|
|
|
|
# New line preferences
|
|
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
|
|
|
|
# Indentation preferences
|
|
csharp_indent_case_contents = true
|
|
csharp_indent_switch_labels = true
|
|
|
|
# Space preferences
|
|
csharp_space_after_keywords_in_control_flow_statements = true
|
|
csharp_space_between_method_declaration_parameter_list_parentheses = false
|
|
csharp_space_between_method_call_parameter_list_parentheses = false
|
|
|
|
[*.css]
|
|
indent_size = 2
|
|
|
|
[*.js]
|
|
indent_size = 2
|