File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 6969 <Rule Id =" SA1128" Action =" Error" /><!-- ConstructorInitializerMustBeOnOwnLine -->
7070 <Rule Id =" SA1129" Action =" Error" /><!-- DoNotUseDefaultValueTypeConstructor -->
7171 <Rule Id =" SA1130" Action =" Error" /><!-- UseLambdaSyntax -->
72- <Rule Id =" SA1131" Action =" Error " /><!-- UseReadableConditions -->
72+ <Rule Id =" SA1131" Action =" Info " /><!-- UseReadableConditions -->
7373 <Rule Id =" SA1132" Action =" Error" /><!-- DoNotCombineFields -->
7474 <Rule Id =" SA1133" Action =" Error" /><!-- DoNotCombineAttributes -->
7575 <Rule Id =" SA1134" Action =" Error" /><!-- AttributesMustNotShareLine -->
Original file line number Diff line number Diff line change 1+ using System ;
2+
3+ namespace Sandbox
4+ {
5+ public static class ReadableConditions
6+ {
7+ public static void Conditions ( )
8+ {
9+ if ( 10 == Environment . ExitCode )
10+ {
11+ }
12+
13+ if ( 10 <= Environment . ExitCode && Environment . ExitCode > 20 )
14+ {
15+ }
16+ }
17+ }
18+ }
You can’t perform that action at this time.
0 commit comments