Re: Ignore warning: duplicate variable

2022-10-10 Thread Hugo Ferreira
It's work. Thank you very much. Josh Tynjala escreveu no dia segunda, 10/10/2022 à(s) 16:38: > I think that the compiler option to turn off this particular warning is: > -warn-duplicate-variable-def > > You will likely need to add it in additionalOptions instead of > compilerOptions in

Re: Ignore warning: duplicate variable

2022-10-10 Thread Josh Tynjala
I think that the compiler option to turn off this particular warning is: -warn-duplicate-variable-def You will likely need to add it in additionalOptions instead of compilerOptions in asconfig.json. -- Josh Tynjala Bowler Hat LLC On Sun, Oct 9, 2022 at 1:54 PM Hugo

Ignore warning: duplicate variable

2022-10-09 Thread Hugo Ferreira
Hi, With the latest SDK, I start getting false warnings about duplicate variable. BTW, I never like this warning when was true. How can I ignore warnings about duplicate variables using VS Code ?