Cauldron/.editorconfig

24 lines
677 B
INI
Raw Normal View History

2023-07-19 12:30:39 -07:00
[*]
end_of_line = lf
insert_final_newline = true
2023-07-31 16:38:48 -07:00
rulers = 100
2023-07-19 12:30:39 -07:00
[*.cs]
indent_style = tab
indent_size = 4
dotnet_sort_system_directives_first = true
csharp_style_namespace_delarations = file_scoped:warning
dotnet_style_qualification_for_field = true:info
2023-07-24 14:20:26 -07:00
dotnet_style_qualification_for_property = true:info
dotnet_style_qualification_for_method = true:info
dotnet_style_qualification_for_event = true:info
2023-07-19 12:30:39 -07:00
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:info
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
2023-07-31 16:38:48 -07:00
[*.md]
indent_style = tab
indent_size = 4