Skip to content

Commit

Permalink
🎨 Update .editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
jasontaylordev committed Jun 25, 2023
1 parent 81900fd commit b680dfa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,6 @@ csharp_using_directive_placement = outside_namespace:silent

#### C# Formatting Rules ####

# Namespace preferences
csharp_style_namespace_declarations = file_scoped:warning

# New line preferences
csharp_new_line_before_catch = true
csharp_new_line_before_else = true
Expand Down Expand Up @@ -223,6 +220,10 @@ dotnet_naming_rule.private_fields_should_be__camelcase.severity = suggestion
dotnet_naming_rule.private_fields_should_be__camelcase.symbols = private_fields
dotnet_naming_rule.private_fields_should_be__camelcase.style = _camelcase

dotnet_naming_rule.private_static_fields_should_be_s_camelcase.severity = suggestion
dotnet_naming_rule.private_static_fields_should_be_s_camelcase.symbols = private_static_fields
dotnet_naming_rule.private_static_fields_should_be_s_camelcase.style = s_camelcase

dotnet_naming_rule.public_constant_fields_should_be_pascalcase.severity = suggestion
dotnet_naming_rule.public_constant_fields_should_be_pascalcase.symbols = public_constant_fields
dotnet_naming_rule.public_constant_fields_should_be_pascalcase.style = pascalcase
Expand Down Expand Up @@ -360,4 +361,3 @@ dotnet_naming_style.s_camelcase.required_prefix = s_
dotnet_naming_style.s_camelcase.required_suffix =
dotnet_naming_style.s_camelcase.word_separator =
dotnet_naming_style.s_camelcase.capitalization = camel_case

0 comments on commit b680dfa

Please sign in to comment.