Victorien Elvinger

Results 332 comments of Victorien Elvinger

@emab, If we follow the suggestion of @ematipico, I propose `noTsIgnoreComment` or `noIgnoreTsComment`.

Hi! The `else` clause of your playground example is actually useless. Indeed, your example: ```js function helloWorld(b: boolean) { if (b) { return 1; } else { return 2; }...

Yes, we changed a bit the behavior of `noUselessElse` in the 1.4.1 version to accept code like yours.

Good point. Have you some suggestions to improve the message?

The message was improved to `This else clause can be omitted because previous branches break early.`. Thanks for your help :)

Thanks for bringing this to light! We currently have no way of retrieving the accessibility modifier of the parent's constructor. The only way to fix this is ignoring claases that...

> How difficult would it be to get access to inheritance chain? If the class is in the same file, it isp ossible. Otherwise, the infrastructure is currently uable to...