Issues (8)

src/foo.js (1 issue)

1
while (true) {
0 ignored issues
show
The condition true seems to be always true, making it impossible for the loop to be exited. Are you sure about that?
Loading history...
2
  alert(101);
3
}
4
5
// unreachable
6
if (window.bla) {
7
  console.log(window.bla ? 123 : 456);
8
}
9
10