Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/beerose/go-group-imports-vscode

VSCode extension for separating imports in go files into three groups: stdlib, 3rd party, own.
https://github.com/beerose/go-group-imports-vscode

Last synced: 4 days ago
JSON representation

VSCode extension for separating imports in go files into three groups: stdlib, 3rd party, own.

Awesome Lists containing this project

README

        

# go-group-imports

VSCode extension for separating imports in Go files into three (or four depending on the settings) groups:

1. Standard library imports,
2. Third party imports,
3. (OPTIONAL) Organization imports (when is configured in settings),
4. Own (belonging to the modue) imports.

## Extension Settings

- `groupImports.onSave`: automatically group imports on save. Default value is `true`.
- `groupImports.includeOrgGroup`: handle imports from the organization into a separate group. Default value is `undefined`.