Warnings are often ignored by developers unless you specifically force warnings to be compile errors (you can do this in most compiler). I work on TypeScript/C# code-bases and unless you force people to tidy up unused imports/using and variables, people will just leave them there.
This BTW can cause issues with dependency chains and cause odd compile issues as a result.
> Warnings are often ignored by developers unless you specifically force warnings to be compile errors (you can do this in most compiler).
Not my experience. Find better managers.