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 38
38
const LintCodeDescriptions = Dict {LintCodes,String} (
39
39
IncorrectCallArgs => " Possible method call error." ,
40
40
IncorrectIterSpec => " A loop iterator has been used that will likely error." ,
41
- NothingEquality => " Compare against `nothing` using `=== `" ,
42
- NothingNotEq => " Compare against `nothing` using `!== `" ,
41
+ NothingEquality => " Compare against `nothing` using `isnothing `" ,
42
+ NothingNotEq => " Compare against `nothing` using `!isnothing `" ,
43
43
ConstIfCondition => " A boolean literal has been used as the conditional of an if statement - it will either always or never run." ,
44
44
EqInIfConditional => " Unbracketed assignment in if conditional statements is not allowed, did you mean to use ==?" ,
45
45
PointlessOR => " The first argument of a `||` call is a boolean literal." ,
You can’t perform that action at this time.
0 commit comments