Skip to content

Commit 634f50e

Browse files
author
Gonzalo Diaz
committed
[REFACTOR] ignore deliberate coding decisions marked as warnings.
1 parent 81846e0 commit 634f50e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,16 @@ dotnet_naming_rule.all_methods_must_be_camel_case.style = camel_case_style
5757
dotnet_naming_rule.all_methods_must_be_camel_case.severity = warning
5858

5959
# Due clean code suggestion
60+
61+
# CA1034: Los tipos anidados no deben ser visibles
62+
dotnet_diagnostic.CA1034.severity = none
63+
64+
# CA1002: No exponer listas genéricas
65+
dotnet_diagnostic.CA1002.severity = none
66+
67+
# CA1707: Los identificadores no deben contener caracteres de subrayado
68+
dotnet_diagnostic.CA1707.severity = none
69+
6070
[*.{cs,vb}]
6171
dotnet_diagnostic.IDE0054.severity = none
6272
dotnet_diagnostic.IDE0074.severity = none

src/algorithm_exercises_csharp_test/hackerrank/interview_preparation_kit/arrays/CrushBruteForce.Test.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ public class CrushBruteForceTest
88
public class CrushBruteForceTestCase
99
{
1010
public string title { get; set; } = default!;
11-
public List<List<int>> queries { get; set; } = default!;
11+
public List<List<int>> queries { get; } = default!;
1212
public int n { get; set; } = default!;
1313
public long expected { get; set; } = default!;
1414
}

0 commit comments

Comments
 (0)