You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be cases where eslint rule "no-useless-constructor" will give false positives when used with typescript
e.g.
constructor(private readonly x: number) {}
That constructor is not really useless since it will assign the given parameter to this.x, so maybe consider dropping that rule for now for typescript?