Skip to content

Commit

Permalink
Disable StyleCop's SA1010
Browse files Browse the repository at this point in the history
  • Loading branch information
nurhafiz committed May 2, 2024
1 parent 529d541 commit bb9a706
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
# All files
[*]
indent_style = space
dotnet_style_operator_placement_when_wrapping = beginning_of_line
tab_width = 4
indent_size = 4
end_of_line = crlf
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_null_propagation = true:suggestion
# Code files
[*.cs]
indent_size = 4
Expand Down Expand Up @@ -134,7 +140,16 @@ dotnet_diagnostic.SA1623.severity = none
# SA1633: File should have header
dotnet_diagnostic.SA1633.severity = none
dotnet_diagnostic.SA1009.severity=silent
csharp_using_directive_placement=inside_namespace:warning
csharp_using_directive_placement= inside_namespace:warning
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_namespace_declarations = block_scoped:silent
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_prefer_primary_constructors = true:suggestion
csharp_style_expression_bodied_lambdas = true:silent
csharp_style_expression_bodied_local_functions = false:silent
csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
dotnet_diagnostic.SA1010.severity = none
[*Test.cs]
# SA1600: Elements should be documented
dotnet_diagnostic.SA1600.severity = none

0 comments on commit bb9a706

Please sign in to comment.