Skip to content

Commit c31afd3

Browse files
committed
Set inspections to do not show
1 parent 465cf12 commit c31afd3

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Rubberduck.Inspections/Concrete/EmptyCaseBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Rubberduck.Inspections.Concrete
1414
internal class EmptyCaseBlockInspection : ParseTreeInspectionBase
1515
{
1616
public EmptyCaseBlockInspection(RubberduckParserState state)
17-
: base(state, CodeInspectionSeverity.Suggestion) { }
17+
: base(state, CodeInspectionSeverity.DoNotShow) { }
1818

1919
public override IInspectionListener Listener { get; } =
2020
new EmptyCaseBlockListener();

Rubberduck.Inspections/Concrete/EmptyElseBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Rubberduck.Inspections.Concrete
1414
internal class EmptyElseBlockInspection : ParseTreeInspectionBase
1515
{
1616
public EmptyElseBlockInspection(RubberduckParserState state)
17-
: base(state, CodeInspectionSeverity.Suggestion) { }
17+
: base(state, CodeInspectionSeverity.DoNotShow) { }
1818

1919
public override Type Type => typeof(EmptyElseBlockInspection);
2020

Rubberduck.Inspections/Concrete/EmptyForEachBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Rubberduck.Inspections.Concrete
1414
internal class EmptyForEachBlockInspection : ParseTreeInspectionBase
1515
{
1616
public EmptyForEachBlockInspection(RubberduckParserState state)
17-
: base(state, CodeInspectionSeverity.Suggestion) { }
17+
: base(state, CodeInspectionSeverity.DoNotShow) { }
1818

1919
public override Type Type => typeof(EmptyForEachBlockInspection);
2020

Rubberduck.Inspections/Concrete/EmptyForLoopBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Rubberduck.Inspections.Concrete
1414
internal class EmptyForLoopBlockInspection : ParseTreeInspectionBase
1515
{
1616
public EmptyForLoopBlockInspection(RubberduckParserState state)
17-
: base(state, CodeInspectionSeverity.Suggestion) { }
17+
: base(state, CodeInspectionSeverity.DoNotShow) { }
1818

1919
public override Type Type => typeof(EmptyForLoopBlockInspection);
2020

Rubberduck.Inspections/Concrete/EmptyIfBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Rubberduck.Inspections.Concrete
1616
internal class EmptyIfBlockInspection : ParseTreeInspectionBase
1717
{
1818
public EmptyIfBlockInspection(RubberduckParserState state)
19-
: base(state, CodeInspectionSeverity.Suggestion) { }
19+
: base(state, CodeInspectionSeverity.DoNotShow) { }
2020

2121
public override Type Type => typeof(EmptyIfBlockInspection);
2222

Rubberduck.Inspections/Concrete/EmptyWhileWendBlockInspection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Rubberduck.Inspections.Concrete
1414
internal class EmptyWhileWendBlockInspection : ParseTreeInspectionBase
1515
{
1616
public EmptyWhileWendBlockInspection(RubberduckParserState state)
17-
: base(state, CodeInspectionSeverity.Suggestion) { }
17+
: base(state, CodeInspectionSeverity.DoNotShow) { }
1818

1919
public override Type Type => typeof(EmptyWhileWendBlockInspection);
2020

0 commit comments

Comments
 (0)