@@ -68,7 +68,7 @@ indent_style = tab
6868# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/configuration-options#scope
6969# #########################################
7070
71- [* .{cs,csx,cake, vb,vbx} ]
71+ [* .{cs,csx,vb,vbx} ]
7272# Default Severity for all .NET Code Style rules below
7373dotnet_analyzer_diagnostic.severity = warning
7474
@@ -79,7 +79,7 @@ dotnet_analyzer_diagnostic.severity = warning
7979
8080# .NET Style Rules
8181# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules#net-style-rules
82- [* .{cs,csx,cake, vb,vbx} ]
82+ [* .{cs,csx,vb,vbx} ]
8383# "this." and "Me." qualifiers
8484dotnet_style_qualification_for_field = true :warning
8585dotnet_style_qualification_for_property = true :warning
@@ -128,7 +128,7 @@ dotnet_diagnostic.IDE0130.severity = suggestion
128128
129129# C# Style Rules
130130# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules#c-style-rules
131- [* .{cs,csx,cake } ]
131+ [* .{cs,csx} ]
132132# 'var' preferences
133133csharp_style_var_for_built_in_types = true :warning
134134csharp_style_var_when_type_is_apparent = true :warning
@@ -177,12 +177,12 @@ csharp_style_namespace_declarations = file_scoped:warning
177177# #########################################
178178
179179# .NET Unnecessary code rules
180- [* .{cs,csx,cake, vb,vbx} ]
180+ [* .{cs,csx,vb,vbx} ]
181181dotnet_code_quality_unused_parameters = all:warning
182182dotnet_remove_unnecessary_suppression_exclusions = none:warning
183183
184184# C# Unnecessary code rules
185- [* .{cs,csx,cake } ]
185+ [* .{cs,csx} ]
186186csharp_style_unused_value_expression_statement_preference = discard_variable:suggestion
187187dotnet_diagnostic.IDE0058.severity = suggestion
188188csharp_style_unused_value_assignment_preference = discard_variable:suggestion
@@ -195,14 +195,14 @@ dotnet_diagnostic.IDE0059.severity = suggestion
195195
196196# .NET formatting rules
197197# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#net-formatting-rules
198- [* .{cs,csx,cake, vb,vbx} ]
198+ [* .{cs,csx,vb,vbx} ]
199199# Organize using directives
200200dotnet_sort_system_directives_first = true
201201dotnet_separate_import_directive_groups = false
202202
203203# C# formatting rules
204204# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/formatting-rules#c-formatting-rules
205- [* .{cs,csx,cake } ]
205+ [* .{cs,csx} ]
206206# Newline options
207207# https://docs.microsoft.com/visualstudio/ide/editorconfig-formatting-conventions#new-line-options
208208csharp_new_line_before_open_brace = all
@@ -254,7 +254,7 @@ csharp_preserve_single_line_blocks = true
254254# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/naming-rules
255255# #########################################
256256
257- [* .{cs,csx,cake, vb,vbx} ]
257+ [* .{cs,csx,vb,vbx} ]
258258
259259# #########################################
260260# Styles
0 commit comments