Thread with 1 post
jump to expanded postThat time eslint caused problems
So we had a huge backlog of js linting - it broke sometimes last year, and nobody did anything about it, and finally I restarted the initiative. We "fixed" a huge monorepo with 150kloc of backend javascript.
And alongside other things, people fixed the for-await-of loops into `forEach` (as per eslint's suggestion). Of course, this changed the logic and brought forward bugs.
Now I'm "looking forward" to manually checking all the fixes we made this way.
#eslint #javascript #forOf