pacserver/.editorconfig

26 lines
622 B
INI
Raw Permalink Normal View History

2023-06-03 08:51:24 +02:00
# Remove the line below if you want to inherit .editorconfig settings from higher directories
root = true
# C# files
[*.cs]
# Indentation and spacing
indent_size = 4
2023-06-03 09:35:43 +02:00
indent_style = space
2023-06-03 08:51:24 +02:00
tab_width = 4
# Naming Conventions
2023-06-12 02:17:54 +02:00
dotnet_naming_style.camel_case.capitalization = camel_case
2023-06-03 08:51:24 +02:00
# New line preferences
csharp_new_line_before_open_brace = none
csharp_new_line_before_else = false
csharp_new_line_before_catch = false
csharp_new_line_before_finally = false
# Wrapping preferences
csharp_preserve_single_line_statements = true
csharp_preserve_single_line_blocks = true
# Switch case
csharp_indent_case_contents = true