VSCode extension for separating imports in Go files into three (or four depending on the settings) groups:
Standard library imports,
Third party imports,
(OPTIONAL) Organization imports (when is configured in settings),
Own (belonging to the modue) imports.
Extension Settings
goImportsSorter.onSave: automatically group imports on save. Default value is true.
goImportsSorter.organizationPkg: Organization package prefix (e.g., 'github.com/myorg'). Imports from this prefix will be grouped separately. Default value is "".