Which EsLint rules enforce the following correction?
type Incorrect = Array< number >;
type Correct = Array<number>;
Every @typescript-eslint / @stylistic rule I have tried dodges it.
Which EsLint rules enforce the following correction?
type Incorrect = Array< number >;
type Correct = Array<number>;
Every @typescript-eslint / @stylistic rule I have tried dodges it.