File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
src/algorithm_exercises_csharp_test/hackerrank/interview_preparation_kit/arrays Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,26 @@ dotnet_naming_rule.all_methods_must_be_camel_case.style = camel_case_style
5757dotnet_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+
70+ # CA1308: Normalizar las cadenas en mayúsculas
71+ dotnet_diagnostic.CA1308.severity = none
72+
73+
6074[* .{cs,vb} ]
75+ # Default severity for analyzer diagnostics with category 'Style'
76+ dotnet_analyzer_diagnostic.category-Style.severity = none
77+
6178dotnet_diagnostic.IDE0054.severity = none
6279dotnet_diagnostic.IDE0074.severity = none
80+
81+ # CA1515: Consider making public types internal
82+ dotnet_diagnostic.CA1515.severity = none
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments