dotfiles/home/editorconfig

19 lines
466 B
Text

root = true
[*]
insert_final_newline = true
[*.json]
indent_size = 2
[*.cs]
# Prefer expression body for methods when they will be a single line, but never
# warn me either way.
dotnet_diagnostic.IDE0022.severity = none
csharp_style_expression_bodied_methods = when_on_single_line
# Allow me to use either file-scoped or block-scoped namespace declarations
# without warnings.
dotnet_diagnostic.IDE0160.severity = none
dotnet_diagnostic.IDE0161.severity = none