When the call to a function doesn’t have any side effects, what is the point of making the call if the results are ignored? In such case, either the function call is useless and should be dropped or the source code doesn’t behave as expected.
To prevent generating any false-positives, this rule triggers an issues only on a predefined list of known objects & functions.
'hello'.lastIndexOf('e'); // Noncompliant
let char = 'hello'.lastIndexOf('e');
The rule relies on type information and requires the use of typescript-eslint/parser
.
- CERT, EXP12-C. - Do not ignore values returned by functions
- CERT, EXP00-J. - Do not ignore values returned by methods