Files
dalamud-plugin-template/.editorconfig
T
JonKazama-Hellion 4a2e840888
CI / build (push) Failing after 34s
Initial template setup
2026-05-09 16:41:15 +02:00

31 lines
767 B
INI

root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 4
[*.{json,yaml,yml,md}]
indent_size = 2
[*.{csproj,xml}]
indent_size = 2
[*.cs]
# Namespace conventions
csharp_style_namespace_declarations = file_scoped:warning
# Newline 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
# Var preferences
csharp_style_var_for_built_in_types = true:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
# Expression-bodied members
csharp_style_expression_bodied_methods = when_on_single_line:silent
csharp_style_expression_bodied_properties = true:suggestion