How to detect nested loop with same index in JavaScript/TypeScript
I am trying to detect nested loop with the same index which looks like this: for(let i = 0; i < 10; i++) { for(let i = 0; i < 10; i++) { } } I have searched Eslint rules but haven't ...