File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3636const LintCodeDescriptions = Dict {LintCodes,String} (
3737 IncorrectCallArgs => " Possible method call error." ,
3838 IncorrectIterSpec => " A loop iterator has been used that will likely error." ,
39- NothingEquality => " Compare against `nothing` using `=== `" ,
40- NothingNotEq => " Compare against `nothing` using `!== `" ,
39+ NothingEquality => " Compare against `nothing` using `isnothing `" ,
40+ NothingNotEq => " Compare against `nothing` using `!isnothing `" ,
4141 ConstIfCondition => " A boolean literal has been used as the conditional of an if statement - it will either always or never run." ,
4242 EqInIfConditional => " Unbracketed assignment in if conditional statements is not allowed, did you mean to use ==?" ,
4343 PointlessOR => " The first argument of a `||` call is a boolean literal." ,
You can’t perform that action at this time.
0 commit comments