SonarTS icon indicating copy to clipboard operation
SonarTS copied to clipboard

FP no-useless-cast (S4325): boolean literal as operand

Open vilchik-elena opened this issue 5 years ago • 0 comments

See #482, Reported in #828

const right = {
    error: true as true // cast is flagged as unnecessary
}

typeof right.error // true

const wrong = {
    error: true
}

typeof wrong.error; // boolean

vilchik-elena avatar Feb 08 '19 08:02 vilchik-elena