VSCode extension for separating imports in Go files into three groups:
- Standard library imports,
- Third party imports,
- Own (belonging to the organization) imports.
groupImports.onSave
: automatically group imports on save. Default value istrue
.groupImports.GoPrivate
: the private packages that will also be included as own packages, eg: "github.com/your-compony/"