function a() { console.log("hello a"); } function b() { console.log("hello b"); } // eslint-disable-next-line @typescript-eslint/no-unused-vars function c() { console.log("hello c"); } a(); b(); b();