allow var usage

This commit is contained in:
Jonas Dellinger 2022-11-27 13:12:22 +01:00
parent c5485a7183
commit f6513bcbb9
2 changed files with 7 additions and 1 deletions

View File

@ -35,4 +35,9 @@ dotnet_style_qualification_for_event = false:warning
csharp_prefer_braces = true:warning csharp_prefer_braces = true:warning
csharp_prefer_simple_using_statement = true:warning csharp_prefer_simple_using_statement = true:warning
# Allow var
csharp_style_var_for_built_in_types = true
csharp_style_var_when_type_is_apparent = true
csharp_style_var_elsewhere = true
# Custom disabled # Custom disabled

View File

@ -3,6 +3,7 @@
"enableAnalyzersSupport": true "enableAnalyzersSupport": true
}, },
"FormattingOptions": { "FormattingOptions": {
"enableEditorConfigSupport": true "enableEditorConfigSupport": true,
"OrganizeImports": true
} }
} }