Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 426 Bytes

README.md

File metadata and controls

11 lines (8 loc) · 426 Bytes

go-group-imports

VSCode extension for separating imports in Go files into three groups:

  1. Standard library imports,
  2. Third party imports,
  3. Own (belonging to the organization) imports.

Extension Settings

  • groupImports.onSave: automatically group imports on save. Default value is true.
  • groupImports.GoPrivate: the private packages that will also be included as own packages, eg: "github.com/your-compony/"