Is there anything in VS Code or Go that can help ignoring a function?
For instance, a function has some errors, but it’s unused for the moment, but I need to test another functionality somewhere else in the project first, and I don’t want to comment out the code.
There is anything like this?
@ignoreThisFunction
func myFunc() {}
1