Skip to content

gopls/v0.4.3

Compare
Choose a tag to compare
@stamblerre stamblerre released this 08 Jul 18:54
· 3794 commits to master since this release

Disable the fillstruct analysis by default.
We recently uncovered some performance issues with the analysis, leading us to disable it by default.
Once those issues are resolved, we will enable it by default again.
You can still enable it by adding the following to your VS Code settings:

"gopls": {
	"analyses": {		
		"fillstruct": true,
	}
}