go-group-imports-vscode
go-group-imports-vscode copied to clipboard
VSCode extension for separating imports in go files into three groups: stdlib, 3rd party, own.
You basically can't import anything manually and have to rely on IntelliSense or refactoring while AS is on.
After a recent update in vscode when saving a `.go` file the imports keeps flashing in a loop and the file is not saved. It only happens on save, calling...
The feature is not working on Macbook M1 installed version of VSCode.
When imports are commented out it tries to fix them, altering them Example ```go package main // import ( // "fmt" // "github.com/some/library" // ) ``` When saved it becomes:...
Hello, I'm reporting some weird bug When I save some files they are "shaking" infinitely until I click another file in the VSCode Explorer. And it should be a "valid...
1 - Standard library imports 2 - Third party imports 3 - Own libraries (belonging to the organisation) imports 4 - Own packages (belonging to the organisation and the module/software...
For some reason there are two organization that I want to put them into the separate group. Would it be possible to consider adding support for this capability in a...